Name |
Type |
Description |
Notes |
mountain |
bool |
|
[optional] |
local |
bool |
|
[optional] |
regional |
bool |
|
[optional] |
national |
bool |
|
[optional] |
from stadiamaps.models.bike_network import BikeNetwork
# TODO update the JSON string below
json = "{}"
# create an instance of BikeNetwork from a JSON string
bike_network_instance = BikeNetwork.from_json(json)
# print the JSON string representation of the object
print(BikeNetwork.to_json())
# convert the object into a dict
bike_network_dict = bike_network_instance.to_dict()
# create an instance of BikeNetwork from a dict
bike_network_from_dict = BikeNetwork.from_dict(bike_network_dict)
[Back to Model list] [Back to API list] [Back to README]