Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

PeliasResponse.md

File metadata and controls

31 lines (22 loc) · 1.11 KB

PeliasResponse

Properties

Name Type Description Notes
geocoding GeocodingObject
bbox List[float] An array of 4 floating point numbers representing the (W, S, E, N) extremes of the features found. [optional]
features List[PeliasGeoJSONFeature]

Example

from stadiamaps.models.pelias_response import PeliasResponse

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

# convert the object into a dict
pelias_response_dict = pelias_response_instance.to_dict()
# create an instance of PeliasResponse from a dict
pelias_response_from_dict = PeliasResponse.from_dict(pelias_response_dict)

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