Name |
Type |
Description |
Notes |
id |
int |
ID for this folder |
[optional] [readonly] |
folder_size |
str |
Folder size in bytes |
[optional] [readonly] |
created |
datetime |
Creation time |
[optional] [readonly] |
modified |
datetime |
Last modified time |
[optional] [readonly] |
name |
str |
Folder name |
[optional] [readonly] |
obj_key |
str |
S3 key reference |
[optional] [readonly] |
last_modified |
datetime |
Last modified time |
[optional] |
from epiccore.models.folder_details import FolderDetails
# TODO update the JSON string below
json = "{}"
# create an instance of FolderDetails from a JSON string
folder_details_instance = FolderDetails.from_json(json)
# print the JSON string representation of the object
print FolderDetails.to_json()
# convert the object into a dict
folder_details_dict = folder_details_instance.to_dict()
# create an instance of FolderDetails from a dict
folder_details_form_dict = folder_details.from_dict(folder_details_dict)
[Back to Model list] [Back to API list] [Back to README]