Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 900 Bytes

File metadata and controls

30 lines (21 loc) · 900 Bytes

UpdateProject

Properties

Name Type Description Notes
name str
description str [optional]

Example

from gridly.models.update_project import UpdateProject

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

# convert the object into a dict
update_project_dict = update_project_instance.to_dict()
# create an instance of UpdateProject from a dict
update_project_from_dict = UpdateProject.from_dict(update_project_dict)

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