The request parameters for managing storage encryption operations and notifications.
| Name | Type | Description | Notes |
|---|---|---|---|
| notify_users | bool | Specifies whether the users receive notifications about the storage encryption operations. | [optional] |
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)