Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.24 KB

File metadata and controls

29 lines (21 loc) · 1.24 KB

StorageEncryptionRequestsDto

The request parameters for managing storage encryption operations and notifications.

Properties

Name Type Description Notes
notify_users bool Specifies whether the users receive notifications about the storage encryption operations. [optional]

Example

from docspace_api_sdk.models.storage_encryption_requests_dto import StorageEncryptionRequestsDto

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

# convert the object into a dict
storage_encryption_requests_dto_dict = storage_encryption_requests_dto_instance.to_dict()
# create an instance of StorageEncryptionRequestsDto from a dict
storage_encryption_requests_dto_from_dict = StorageEncryptionRequestsDto.from_dict(storage_encryption_requests_dto_dict)

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