Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 846 Bytes

File metadata and controls

30 lines (21 loc) · 846 Bytes

PathNode

Properties

Name Type Description Notes
name str [optional]
parent_path str [optional]

Example

from gridly.models.path_node import PathNode

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

# convert the object into a dict
path_node_dict = path_node_instance.to_dict()
# create an instance of PathNode from a dict
path_node_from_dict = PathNode.from_dict(path_node_dict)

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