DeleteContentRequest
Represents a request to delete content from the document management system.
This class encapsulates the necessary information required to delete content, including security keys, commit message, and deletion reason. It uses encryption attributes to handle secure data and inherits from BaseDocumentManagementRequest.
Properties
| Name | Description |
|---|---|
| CommitMessage | Gets the commit message associated with the delete operation. |
| DecryptedObjectSecret | Gets the decrypted object secret information. |
| SecretKey | Gets the encrypted secret key used for content security. |
| DecryptedBranchSecret | Gets the decrypted branch secret information. |
| Reason | Gets the reason provided for deleting the content. |
| BranchSecretKey | Gets the encrypted secret key for the branch version. |
Constructors
| Name | Description |
|---|---|
| DeleteContentRequest() | Initializes a new instance of the DeleteContentRequest class. |
| DeleteContentRequest() | Initializes a new instance of the DeleteContentRequest class. |
| DeleteContentRequest(secretKey, branchSecretKey, commitMessage, reason) | Initializes a new instance of the DeleteContentRequest class with the specified security keys and messages. |