Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.04 KB

MatrixRequest.md

File metadata and controls

37 lines (28 loc) · 2.04 KB

MatrixRequest

Properties

Name Type Description Notes
units DistanceUnit [optional] [default to DistanceUnit.KM]
language ValhallaLanguages [optional] [default to ValhallaLanguages.EN_MINUS_US]
directions_type str The level of directional narrative to include. Locations and times will always be returned, but narrative generation verbosity can be controlled with this parameter. [optional] [default to 'instructions']
id str An identifier to disambiguate requests (echoed by the server). [optional]
sources List[MatrixWaypoint] The list of starting locations
targets List[MatrixWaypoint] The list of ending locations
costing MatrixCostingModel
costing_options CostingOptions [optional]
matrix_locations int Only applicable to one-to-many or many-to-one requests. This defaults to all locations. When specified explicitly, this option allows a partial result to be returned. This is basically equivalent to "find the closest/best locations out of the full set." This can have a dramatic improvement for large requests. [optional]

Example

from stadiamaps.models.matrix_request import MatrixRequest

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

# convert the object into a dict
matrix_request_dict = matrix_request_instance.to_dict()
# create an instance of MatrixRequest from a dict
matrix_request_from_dict = MatrixRequest.from_dict(matrix_request_dict)

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