Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.23 KB

File metadata and controls

36 lines (27 loc) · 1.23 KB

GetFile200Response

Properties

Name Type Description Notes
file_id str [optional]
s3_uri str [optional]
url str Presigned download URL (1 hour) [optional]
filename str [optional]
content_type str [optional]
size int [optional]
metadata object [optional]
created_at datetime [optional]

Example

from quantcdn.models.get_file200_response import GetFile200Response

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

# convert the object into a dict
get_file200_response_dict = get_file200_response_instance.to_dict()
# create an instance of GetFile200Response from a dict
get_file200_response_from_dict = GetFile200Response.from_dict(get_file200_response_dict)

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