io.voucherify.client.ApiVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voucherify-java-sdk Show documentation
Show all versions of voucherify-java-sdk Show documentation
Voucherify-java-sdk is a Java client (can be used in Android application as well) which was created to simplify integration with Voucherify backend (http://www.voucherify.io)
package io.voucherify.client;
import lombok.Getter;
@Getter
public enum ApiVersion {
V_2017_04_05("v2017-04-05"), V_2017_04_20("v2017-04-20");
private final String value;
ApiVersion(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy