CancelBranchRequest
Represents a request to cancel a branch in the document management system.
This class extends BaseRequest to handle branch cancellation operations. It manages security through encrypted/decrypted keys for both the object and the branch being cancelled. The class implements secure cancellation patterns that ensure proper access verification for both the object and the branch.
Properties
| Name | Description |
|---|---|
| DecryptedObjectSecret | Gets the decrypted secret information for the object containing the branch. |
| SecretKey | Gets the encrypted secret key for the object containing the branch. |
| DecryptedBranchSecret | Gets the decrypted secret information for the branch being cancelled. |
| BranchSecretKey | Gets the encrypted secret key for the branch being cancelled. |
Constructors
| Name | Description |
|---|---|
| CancelBranchRequest() | Initializes a new instance of the CancelBranchRequest class. |
| CancelBranchRequest(secretKey, branchSecretKey) | Initializes a new instance of the CancelBranchRequest class with security information. |