Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

BatchConfirmRequest

Request to confirm multiple uploads in batch.

Properties

Name Type Description Notes
confirmations List[Dict[str, object]] List of confirmations with upload_id, etag, file_size_bytes

Example

from mixpeek.models.batch_confirm_request import BatchConfirmRequest

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

# convert the object into a dict
batch_confirm_request_dict = batch_confirm_request_instance.to_dict()
# create an instance of BatchConfirmRequest from a dict
batch_confirm_request_from_dict = BatchConfirmRequest.from_dict(batch_confirm_request_dict)

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