Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1022 Bytes

File metadata and controls

33 lines (24 loc) · 1022 Bytes

UploadedFile

Properties

Name Type Description Notes
id str [optional]
original_name str [optional]
content_type str [optional]
size int [optional]
thumbnail_id str [optional]

Example

from gridly.models.uploaded_file import UploadedFile

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

# convert the object into a dict
uploaded_file_dict = uploaded_file_instance.to_dict()
# create an instance of UploadedFile from a dict
uploaded_file_from_dict = UploadedFile.from_dict(uploaded_file_dict)

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