Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
34 lines (25 loc) · 1.11 KB

File metadata and controls

executable file
·
34 lines (25 loc) · 1.11 KB

Folder

Properties

Name Type Description Notes
id int ID for this folder [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]

Example

from epiccore.models.folder import Folder

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

# convert the object into a dict
folder_dict = folder_instance.to_dict()
# create an instance of Folder from a dict
folder_form_dict = folder.from_dict(folder_dict)

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