Name |
Type |
Description |
Notes |
text |
str |
The interchange sign text (varies based on the context; see the `maneuverSign` schema). |
|
is_route_number |
bool |
True if the sign is a route number. |
[optional] |
consecutive_count |
int |
The frequency of this sign element within a set a consecutive signs. |
[optional] |
from stadiamaps.models.maneuver_sign_element import ManeuverSignElement
# TODO update the JSON string below
json = "{}"
# create an instance of ManeuverSignElement from a JSON string
maneuver_sign_element_instance = ManeuverSignElement.from_json(json)
# print the JSON string representation of the object
print(ManeuverSignElement.to_json())
# convert the object into a dict
maneuver_sign_element_dict = maneuver_sign_element_instance.to_dict()
# create an instance of ManeuverSignElement from a dict
maneuver_sign_element_from_dict = ManeuverSignElement.from_dict(maneuver_sign_element_dict)
[Back to Model list] [Back to API list] [Back to README]