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

com.mailgun.enums.Severity 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 Severity {

    TEMPORARY("temporary"),
    PERMANENT("permanent");

    private final String value;

    Severity(String value) {
        this.value = value;
    }

    @JsonValue
    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy