Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

InitiateUploadBody

A single upload request object, or an array of upload request objects (max 100).

Properties

Name Type Description Notes
filename str A file name including file extension.
type str The content-type or mime-type of the file to upload.
metadata InitiateUploadBodyMetadata [optional]

Example

from lilt.models.initiate_upload_body import InitiateUploadBody

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

# convert the object into a dict
initiate_upload_body_dict = initiate_upload_body_instance.to_dict()
# create an instance of InitiateUploadBody from a dict
initiate_upload_body_from_dict = InitiateUploadBody.from_dict(initiate_upload_body_dict)

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