Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1007 Bytes

File metadata and controls

30 lines (21 loc) · 1007 Bytes

ListUploadsResponse

Response body for GET /v1/files

Properties

Name Type Description Notes
uploads List[UploadInfo]

Example

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)

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