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

com.mailjet.client.enums.ApiVersion Maven / Gradle / Ivy

There is a newer version: 5.2.5
Show newest version
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