![JAR search and dependency download from the Maven repository](/logo.png)
com.banxa.model.OrderStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The Java SDK for integration with Banxa's API
The newest version!
package com.banxa.model;
public enum OrderStatus {
PENDING_PAYMENT("pendingPayment"),
WAITING_PAYMENT("waitingPayment"),
PAYMENT_RECEIVED("paymentReceived"),
IN_PROGRESS("inProgress"),
COIN_TRANSFERRED("coinTransferred"),
CANCELLED("cancelled"),
DECLINED("declined"),
EXPIRED("expired"),
COMPLETE("complete"),
REFUNDED("refunded");
private final String status;
private OrderStatus(String status) {
this.status = status;
}
public String getStatus() {
return status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy