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