![JAR search and dependency download from the Maven repository](/logo.png)
com.mailgun.enums.ApiVersion 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 ApiVersion {
V_1("v1"),
V_2("v2"),
V_3("v3"),
V_4("v4");
private final String value;
ApiVersion(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy