Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 923 Bytes

BulkRequest.md

File metadata and controls

30 lines (21 loc) · 923 Bytes

BulkRequest

Properties

Name Type Description Notes
endpoint str [optional]
query BulkRequestQuery [optional]

Example

from stadiamaps.models.bulk_request import BulkRequest

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

# convert the object into a dict
bulk_request_dict = bulk_request_instance.to_dict()
# create an instance of BulkRequest from a dict
bulk_request_from_dict = BulkRequest.from_dict(bulk_request_dict)

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