Response from batch upload request.
| Name | Type | Description | Notes |
|---|---|---|---|
| uploads | List[UploadResponse] | Generated uploads with presigned URLs | |
| total | int | Total number of uploads created |
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)