Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

Contour.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

Contour

Properties

Name Type Description Notes
time float The time in minutes for the contour. Mutually exclusive of distance. [optional]
distance float The distance in km for the contour. Mutually exclusive of time. [optional]
color str The color for the output contour, specified as a hex value (without a leading `#`). If no color is specified, one will be assigned automatically. [optional]

Example

from stadiamaps.models.contour import Contour

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

# convert the object into a dict
contour_dict = contour_instance.to_dict()
# create an instance of Contour from a dict
contour_from_dict = Contour.from_dict(contour_dict)

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