Name | Type | Description | Notes |
---|---|---|---|
status | bool | [optional] | |
result | Project | [optional] |
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)