
com.mailgun.enums.AccessLevel Maven / Gradle / Ivy
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