Response body for GET /v1/files
| Name | Type | Description | Notes |
|---|---|---|---|
| uploads | List[UploadInfo] |
from hotdata.models.list_uploads_response import ListUploadsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListUploadsResponse from a JSON string
list_uploads_response_instance = ListUploadsResponse.from_json(json)
# print the JSON string representation of the object
print(ListUploadsResponse.to_json())
# convert the object into a dict
list_uploads_response_dict = list_uploads_response_instance.to_dict()
# create an instance of ListUploadsResponse from a dict
list_uploads_response_from_dict = ListUploadsResponse.from_dict(list_uploads_response_dict)