Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

BatchUploadResponse

Response from batch upload request.

Properties

Name Type Description Notes
uploads List[UploadResponse] Generated uploads with presigned URLs
total int Total number of uploads created

Example

from mixpeek.models.batch_upload_response import BatchUploadResponse

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

# convert the object into a dict
batch_upload_response_dict = batch_upload_response_instance.to_dict()
# create an instance of BatchUploadResponse from a dict
batch_upload_response_from_dict = BatchUploadResponse.from_dict(batch_upload_response_dict)

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