CreateNonIndexedFolder
Properties
Name |
Type |
Description |
Notes |
name |
str |
The name of the non indexed folder. |
|
Example
from libica.openapi.v3.models.create_non_indexed_folder import CreateNonIndexedFolder
# TODO update the JSON string below
json = "{}"
# create an instance of CreateNonIndexedFolder from a JSON string
create_non_indexed_folder_instance = CreateNonIndexedFolder.from_json(json)
# print the JSON string representation of the object
print(CreateNonIndexedFolder.to_json())
# convert the object into a dict
create_non_indexed_folder_dict = create_non_indexed_folder_instance.to_dict()
# create an instance of CreateNonIndexedFolder from a dict
create_non_indexed_folder_from_dict = CreateNonIndexedFolder.from_dict(create_non_indexed_folder_dict)
[Back to Model list] [Back to API list] [Back to README]