Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.26 KB

Restrictions.md

File metadata and controls

40 lines (31 loc) · 1.26 KB

Restrictions

Properties

Name Type Description Notes
golf_cart bool [optional]
truck bool [optional]
pedestrian bool [optional]
wheelchair bool [optional]
taxi bool [optional]
hov bool [optional]
emergency bool [optional]
motorcycle bool [optional]
car bool [optional]
moped bool [optional]
bus bool [optional]
bicycle bool [optional]

Example

from stadiamaps.models.restrictions import Restrictions

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

# convert the object into a dict
restrictions_dict = restrictions_instance.to_dict()
# create an instance of Restrictions from a dict
restrictions_from_dict = Restrictions.from_dict(restrictions_dict)

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