com.mailgun.enums.Page 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.
package com.mailgun.enums;
import com.fasterxml.jackson.annotation.JsonValue;
public enum Page {
FIRST("first"),
LAST("last"),
NEXT("next"),
PREVIOUS("previous");
private final String value;
Page(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy