Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.17 KB

File metadata and controls

31 lines (23 loc) · 1.17 KB

EncryptionSettings

The encryption settings.

Properties

Name Type Description Notes
password str The encryption password. [optional]
status EncryprtionStatus [optional]
notify_users bool Specifies if the users will be notified about the encryption operation or not. [optional]

Example

from docspace_api_sdk.models.encryption_settings import EncryptionSettings

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

# convert the object into a dict
encryption_settings_dict = encryption_settings_instance.to_dict()
# create an instance of EncryptionSettings from a dict
encryption_settings_from_dict = EncryptionSettings.from_dict(encryption_settings_dict)

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