![JAR search and dependency download from the Maven repository](/logo.png)
com.mailgun.enums.WebhookName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
The Mailgun SDK for Java enables Java developers to work with Mailgun API
efficiently.
The newest version!
package com.mailgun.enums;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Supported webhooks
*
* @see Webhooks
*/
public enum WebhookName implements EnumWithValue {
/**
*
* Tracking Clicks.
*
*
* @see Tracking Clicks
*/
CLICKED("clicked"),
/**
*
* Tracking Spam Complaints.
*
*
* @see Tracking Spam Complaints
*/
COMPLAINED("complained"),
/**
*
* Tracking Deliveries.
*
*
* @see Tracking Deliveries
*/
DELIVERED("delivered"),
/**
*
* Tracking Opens.
*
*
* @see Tracking Opens
*/
OPENED("opened"),
/**
*
* Tracking Permanent Failures.
*
*
* @see Tracking Failures
*/
PERMANENT_FAIL("permanent_fail"),
/**
*
* Tracking Temporary Failures.
*
*
* @see Tracking Failures
*/
TEMPORARY_FAIL("temporary_fail"),
/**
*
* Tracking Unsubscribes.
*
*
* @see Tracking Unsubscribes
*/
UNSUBSCRIBED("unsubscribed");
private final String value;
WebhookName(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy