Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

ManeuverSignElement.md

File metadata and controls

31 lines (22 loc) · 1.21 KB

ManeuverSignElement

Properties

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]

Example

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]