Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 989 Bytes

ProjectPatch.md

File metadata and controls

31 lines (23 loc) · 989 Bytes

ProjectPatch

Properties

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

Example

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_form_dict = project_patch.from_dict(project_patch_dict)

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