Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 935 Bytes

File metadata and controls

31 lines (23 loc) · 935 Bytes

ProjectIn

Properties

Name Type Description Notes
owner_id int
name str
description str
starred bool [optional] [default to False]

Example

from compute_api_client.models.project_in import ProjectIn

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

# convert the object into a dict
project_in_dict = project_in_instance.to_dict()
# create an instance of ProjectIn from a dict
project_in_form_dict = project_in.from_dict(project_in_dict)

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