Skip to content

Commit

Permalink
update missing webhook
Browse files Browse the repository at this point in the history
  • Loading branch information
congminh1254 committed Jun 6, 2024
1 parent 7929289 commit 295a9f0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/main/java/com/box/sdk/BoxWebHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -497,8 +497,29 @@ public enum Trigger {
* Triggered when {@link BoxFile} is expired.
*/
SIGN_REQUEST_EXPIRED("SIGN_REQUEST.EXPIRED",
BoxResource.getResourceType(BoxFolder.class), BoxResource.getResourceType(BoxFile.class)),
/**
* Triggered when a signer's email is bounced.
*/
SIGN_REQUEST_SIGNER_EMAIL_BOUNCED("SIGN_REQUEST.SIGNER_EMAIL_BOUNCED",
BoxResource.getResourceType(BoxFolder.class), BoxResource.getResourceType(BoxFile.class)),
/**
* Triggered when the signature request is signed.
*/
SIGN_REQUEST_SIGNER_SIGNED("SIGN_REQUEST.SIGNER_SIGNED",
BoxResource.getResourceType(BoxFolder.class), BoxResource.getResourceType(BoxFile.class)),
/**
* Triggered when the signature is requested from the signer.
*/
SIGN_REQUEST_SIGNER_REQUESTED("SIGN_REQUEST.SIGNER_REQUESTED",
BoxResource.getResourceType(BoxFolder.class), BoxResource.getResourceType(BoxFile.class)),
/**
* Triggered when the signature request could not be processed.
*/
SIGN_REQUEST_ERROR_FINALIZING("SIGN_REQUEST.ERROR_FINALIZING",
BoxResource.getResourceType(BoxFolder.class), BoxResource.getResourceType(BoxFile.class));


/**
* @see #getValue()
*/
Expand Down

0 comments on commit 295a9f0

Please sign in to comment.