| Name |
Type |
Description |
Notes |
| module |
str |
|
[optional] |
| props |
Dict[str, Optional[str]] |
|
[optional] |
| id |
str |
|
[optional] [readonly] |
| last_modified |
datetime |
|
[optional] |
from docspace_api_sdk.models.storage_settings import StorageSettings
# TODO update the JSON string below
json = "{}"
# create an instance of StorageSettings from a JSON string
storage_settings_instance = StorageSettings.from_json(json)
# print the JSON string representation of the object
print(StorageSettings.to_json())
# convert the object into a dict
storage_settings_dict = storage_settings_instance.to_dict()
# create an instance of StorageSettings from a dict
storage_settings_from_dict = StorageSettings.from_dict(storage_settings_dict)
[Back to Model list] [Back to API list] [Back to README]