Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 965 Bytes

EdgeSign.md

File metadata and controls

32 lines (23 loc) · 965 Bytes

EdgeSign

Properties

Name Type Description Notes
exit_number List[str] [optional]
exit_branch List[str] [optional]
exit_toward List[str] [optional]
exit_name List[str] [optional]

Example

from stadiamaps.models.edge_sign import EdgeSign

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

# convert the object into a dict
edge_sign_dict = edge_sign_instance.to_dict()
# create an instance of EdgeSign from a dict
edge_sign_from_dict = EdgeSign.from_dict(edge_sign_dict)

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