All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mailgun.enums.AccessLevel Maven / Gradle / Ivy

Go to download

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