Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

MapMatchRouteResponse.md

File metadata and controls

32 lines (23 loc) · 1.23 KB

MapMatchRouteResponse

Properties

Name Type Description Notes
id str An identifier to disambiguate requests (echoed by the server). [optional]
trip RouteTrip
alternates List[RouteResponseAlternatesInner] [optional]
linear_references List[str] [optional]

Example

from stadiamaps.models.map_match_route_response import MapMatchRouteResponse

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

# convert the object into a dict
map_match_route_response_dict = map_match_route_response_instance.to_dict()
# create an instance of MapMatchRouteResponse from a dict
map_match_route_response_from_dict = MapMatchRouteResponse.from_dict(map_match_route_response_dict)

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