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 daf9f8b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/main/java/com/box/sdk/BoxWebHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,26 @@ 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_SIGNATURE_REQUESTED("SIGN_REQUEST.SIGNATURE_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));

/**
Expand Down

0 comments on commit daf9f8b

Please sign in to comment.