![JAR search and dependency download from the Maven repository](/logo.png)
com.mailjet.client.enums.ApiVersion Maven / Gradle / Ivy
package com.mailjet.client.enums;
import lombok.Getter;
/**
* Declares constants with supported MailJet API versions
*/
public enum ApiVersion {
V3_1("v3.1"),
V3("v3"),
V4("v4");
@Getter
private final String urlSegment;
ApiVersion(String urlSegment){
this.urlSegment = urlSegment;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy