![JAR search and dependency download from the Maven repository](/logo.png)
com.mailgun.enums.AccessLevel 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;
public enum AccessLevel {
/**
*
* Only authenticated users can post to this list. It is used for mass announcements and newsletters.
*
*
* This is the default access level.
*
*/
READ_ONLY("readonly"),
/**
*
* Subscribed members of the list can communicate with each other.
*
*/
MEMBERS("members"),
/**
*
* Everyone can post to this list. Recommended turning spam filtering on when using this mode.
*
*/
EVERYONE("everyone");
private final String value;
AccessLevel(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy