| Name | Type | Description | Notes |
|---|---|---|---|
| path | str | [optional] | |
| new_name | str |
from gridly.models.update_path import UpdatePath
# TODO update the JSON string below
json = "{}"
# create an instance of UpdatePath from a JSON string
update_path_instance = UpdatePath.from_json(json)
# print the JSON string representation of the object
print(UpdatePath.to_json())
# convert the object into a dict
update_path_dict = update_path_instance.to_dict()
# create an instance of UpdatePath from a dict
update_path_from_dict = UpdatePath.from_dict(update_path_dict)