Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.02 KB

File metadata and controls

29 lines (21 loc) · 1.02 KB

GetProjectResponse

GetProjectResponse returns a project with its owner details.

Properties

Name Type Description Notes
project ProjectWithDetails [optional]

Example

from ri.apiclient.models.get_project_response import GetProjectResponse

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

# convert the object into a dict
get_project_response_dict = get_project_response_instance.to_dict()
# create an instance of GetProjectResponse from a dict
get_project_response_from_dict = GetProjectResponse.from_dict(get_project_response_dict)

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