Skip to content

Files

Latest commit

 

History

History
33 lines (24 loc) · 1.14 KB

ProjectCreate.md

File metadata and controls

33 lines (24 loc) · 1.14 KB

ProjectCreate

Properties

Name Type Description Notes
title str Project title.
code str Project code. Unique for team. Digits and special characters are not allowed.
description str Project description. [optional]
access str [optional]
group str Team group hash. Required if access param is set to group. [optional]

Example

from qaseio.models.project_create import ProjectCreate

# TODO update the JSON string below
json = "{}"
# create an instance of ProjectCreate from a JSON string
project_create_instance = ProjectCreate.from_json(json)
# print the JSON string representation of the object
print ProjectCreate.to_json()

# convert the object into a dict
project_create_dict = project_create_instance.to_dict()
# create an instance of ProjectCreate from a dict
project_create_form_dict = project_create.from_dict(project_create_dict)

[Back to Model list] [Back to API list] [Back to README]