GetProjectResponse returns a project with its owner details.
| Name | Type | Description | Notes |
|---|---|---|---|
| project | ProjectWithDetails | [optional] |
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)