Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 953 Bytes

ProjectResponse.md

File metadata and controls

30 lines (21 loc) · 953 Bytes

ProjectResponse

Properties

Name Type Description Notes
status bool [optional]
result Project [optional]

Example

from qaseio.models.project_response import ProjectResponse

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

# convert the object into a dict
project_response_dict = project_response_instance.to_dict()
# create an instance of ProjectResponse from a dict
project_response_form_dict = project_response.from_dict(project_response_dict)

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