| Name |
Type |
Description |
Notes |
| owner_id |
int |
The ID of the project |
|
| name |
str |
The name of the project |
|
| description |
str |
The description of the project |
|
| starred |
bool |
If the project is starred |
[optional] [default to False] |
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_from_dict = ProjectIn.from_dict(project_in_dict)
[Back to Model list] [Back to API list] [Back to README]