public enum WebhookStatus extends Enum<WebhookStatus>
| Enum Constant and Description |
|---|
DISABLED_ADMINISTRATIVE
Webhook has been disabled by Smartsheet support.
|
DISABLED_APP_REVOKED
Webhook has been disabled because the third-party app associated with the webhook has had its access revoked.
|
DISABLED_BY_OWNER
Webhook has been disabled by the owner.
|
DISABLED_CALLBACK_FAILED
Webhook has been disabled because callback was not successfully delivered to the Callback URL.
|
DISABLED_SCOPE_INACCESSIBLE
Webhook has been disabled because its owner lost access to the corresponding data in Smartsheet
|
DISABLED_VERIFICATION_FAILED
Webhook verification has failed.
|
ENABLED
Webhook is active.
|
NEW_NOT_VERIFIED
Webhook has been created but is not enabled because it has not yet been verified.
|
| Modifier and Type | Method and Description |
|---|---|
static WebhookStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebhookStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebhookStatus ENABLED
public static final WebhookStatus NEW_NOT_VERIFIED
public static final WebhookStatus DISABLED_BY_OWNER
public static final WebhookStatus DISABLED_VERIFICATION_FAILED
public static final WebhookStatus DISABLED_CALLBACK_FAILED
public static final WebhookStatus DISABLED_APP_REVOKED
public static final WebhookStatus DISABLED_SCOPE_INACCESSIBLE
public static final WebhookStatus DISABLED_ADMINISTRATIVE
public static WebhookStatus[] values()
for (WebhookStatus c : WebhookStatus.values()) System.out.println(c);
public static WebhookStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2019 Smartsheet. All rights reserved.