Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 989 Bytes

File metadata and controls

34 lines (25 loc) · 989 Bytes

UploadInfo

Single upload info for listing

Properties

Name Type Description Notes
content_type object [optional]
created_at datetime
id str
size_bytes int
status str

Example

from hotdata.models.upload_info import UploadInfo

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

# convert the object into a dict
upload_info_dict = upload_info_instance.to_dict()
# create an instance of UploadInfo from a dict
upload_info_from_dict = UploadInfo.from_dict(upload_info_dict)

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