Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.65 KB

RoutingWaypointAllOfSearchFilter.md

File metadata and controls

34 lines (25 loc) · 1.65 KB

RoutingWaypointAllOfSearchFilter

Properties

Name Type Description Notes
exclude_tunnel bool Excludes roads marked as tunnels [optional] [default to False]
exclude_bridge bool Excludes roads marked as bridges [optional] [default to False]
exclude_ramp bool Excludes roads marked as ramps [optional] [default to False]
exclude_closures bool Excludes roads marked as closed [optional] [default to True]
min_road_class RoadClass The lowest road class allowed [optional]
max_road_class RoadClass The highest road class allowed [optional]

Example

from stadiamaps.models.routing_waypoint_all_of_search_filter import RoutingWaypointAllOfSearchFilter

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

# convert the object into a dict
routing_waypoint_all_of_search_filter_dict = routing_waypoint_all_of_search_filter_instance.to_dict()
# create an instance of RoutingWaypointAllOfSearchFilter from a dict
routing_waypoint_all_of_search_filter_from_dict = RoutingWaypointAllOfSearchFilter.from_dict(routing_waypoint_all_of_search_filter_dict)

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