| Name |
Type |
Description |
Notes |
| owner_id |
int |
|
[optional] |
| name |
str |
|
[optional] |
| description |
str |
|
[optional] |
| starred |
bool |
|
[optional] |
from compute_api_client.models.project_patch import ProjectPatch
# TODO update the JSON string below
json = "{}"
# create an instance of ProjectPatch from a JSON string
project_patch_instance = ProjectPatch.from_json(json)
# print the JSON string representation of the object
print(ProjectPatch.to_json())
# convert the object into a dict
project_patch_dict = project_patch_instance.to_dict()
# create an instance of ProjectPatch from a dict
project_patch_from_dict = ProjectPatch.from_dict(project_patch_dict)
[Back to Model list] [Back to API list] [Back to README]