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 |
---|---|
SecretKey | Gets the encrypted secret key used for content security. |
BranchSecretKey | Gets the encrypted secret key for the branch version. |
DecryptedBranchSecret | Gets the decrypted branch secret information. |
Reason | Gets the reason provided for deleting the content. |
DecryptedObjectSecret | Gets the decrypted object secret information. |
CommitMessage | Gets the commit message associated with the delete operation. |
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. |