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] |
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)