Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 858 Bytes

File metadata and controls

30 lines (21 loc) · 858 Bytes

UpdatePath

Properties

Name Type Description Notes
path str [optional]
new_name str

Example

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)

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