Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

File metadata and controls

32 lines (23 loc) · 1.33 KB

GetPendingUploads200ResponseInner

Properties

Name Type Description Notes
id int Unique upload identifier [optional]
filename str Name of the uploaded file [optional]
status str Current upload status [optional]
created_at datetime Upload creation timestamp [optional]

Example

from lilt.models.get_pending_uploads200_response_inner import GetPendingUploads200ResponseInner

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

# convert the object into a dict
get_pending_uploads200_response_inner_dict = get_pending_uploads200_response_inner_instance.to_dict()
# create an instance of GetPendingUploads200ResponseInner from a dict
get_pending_uploads200_response_inner_from_dict = GetPendingUploads200ResponseInner.from_dict(get_pending_uploads200_response_inner_dict)

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