Skip to content

Latest commit

 

History

History
executable file
·
37 lines (28 loc) · 1.33 KB

FileDetails.md

File metadata and controls

executable file
·
37 lines (28 loc) · 1.33 KB

FileDetails

Properties

Name Type Description Notes
id int ID for this folder [optional] [readonly]
meta_data object File meta-data [optional] [readonly]
created datetime Creation time [optional] [readonly]
modified datetime [optional] [readonly]
name str File name [optional] [readonly]
obj_key str S3 key reference [optional] [readonly]
size int [optional]
last_modified datetime Last modified time [optional] [readonly]
folder int Folder name [optional] [readonly]

Example

from epiccore.models.file_details import FileDetails

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

# convert the object into a dict
file_details_dict = file_details_instance.to_dict()
# create an instance of FileDetails from a dict
file_details_form_dict = file_details.from_dict(file_details_dict)

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