Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

BulkSearchResponse.md

File metadata and controls

31 lines (22 loc) · 1.09 KB

BulkSearchResponse

Properties

Name Type Description Notes
status int
response PeliasResponse [optional]
msg str An error message describing what went wrong (if the status is not 200). [optional]

Example

from stadiamaps.models.bulk_search_response import BulkSearchResponse

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

# convert the object into a dict
bulk_search_response_dict = bulk_search_response_instance.to_dict()
# create an instance of BulkSearchResponse from a dict
bulk_search_response_from_dict = BulkSearchResponse.from_dict(bulk_search_response_dict)

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