| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| description | str | [optional] |
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)