Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 950 Bytes

Folder.md

File metadata and controls

32 lines (24 loc) · 950 Bytes

Folder

Properties

Name Type Description Notes
no_of_files int [optional]
file_size float [optional]
noofoperations int [optional]
updatedon str [optional]
registryid str [optional]

Example

from OmniCore.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]