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