Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 836 Bytes

File metadata and controls

29 lines (20 loc) · 836 Bytes

DeletePath

Properties

Name Type Description Notes
paths List[str] [optional]

Example

from gridly.models.delete_path import DeletePath

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

# convert the object into a dict
delete_path_dict = delete_path_instance.to_dict()
# create an instance of DeletePath from a dict
delete_path_from_dict = DeletePath.from_dict(delete_path_dict)

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