Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.03 KB

File metadata and controls

31 lines (23 loc) · 1.03 KB

StorageSettings

Properties

Name Type Description Notes
module str [optional]
props Dict[str, Optional[str]] [optional]
id str [optional] [readonly]
last_modified datetime [optional]

Example

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]