co.omise.models.DisputeStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of omise-java Show documentation
Show all versions of omise-java Show documentation
Java bindings for the Omise API
package co.omise.models;
import com.fasterxml.jackson.annotation.JsonProperty;
public enum DisputeStatus {
@JsonProperty("open")Open,
@JsonProperty("pending")Pending,
@JsonProperty("won")Won,
@JsonProperty("lost")Lost,
@JsonProperty("closed")Closed,
}