Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 829 Bytes

File metadata and controls

29 lines (20 loc) · 829 Bytes

PathSingle

Properties

Name Type Description Notes
path str [optional]

Example

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)

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