| Name | Type | Description | Notes |
|---|---|---|---|
| paths | List[str] | [optional] |
from gridly.models.path_list import PathList
# TODO update the JSON string below
json = "{}"
# create an instance of PathList from a JSON string
path_list_instance = PathList.from_json(json)
# print the JSON string representation of the object
print(PathList.to_json())
# convert the object into a dict
path_list_dict = path_list_instance.to_dict()
# create an instance of PathList from a dict
path_list_from_dict = PathList.from_dict(path_list_dict)