Package money.zumo.zumokit
Class ExchangeStatus
- java.lang.Object
-
- money.zumo.zumokit.ExchangeStatus
-
public final class ExchangeStatus extends java.lang.Object
Exchange status, for example 'PENDING'.Once exchange is submitted it has to be confirmed. Once exchange is confirmed its status will change from pending to confirmed.
See Make Exchanges guide for details.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CONFIRMED
Exchange was confirmed.static java.lang.String
FAILED
Exchange has failed.static java.lang.String
PENDING
Outgoing transaction has been submitted.static java.lang.String
WITHDRAWING
Outgoing transaction has been mined and return transaction has been initiated.
-
Constructor Summary
Constructors Constructor Description ExchangeStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
PENDING
public static final java.lang.String PENDING
Outgoing transaction has been submitted.- See Also:
- Constant Field Values
-
WITHDRAWING
public static final java.lang.String WITHDRAWING
Outgoing transaction has been mined and return transaction has been initiated.- See Also:
- Constant Field Values
-
CONFIRMED
public static final java.lang.String CONFIRMED
Exchange was confirmed.- See Also:
- Constant Field Values
-
FAILED
public static final java.lang.String FAILED
Exchange has failed.- See Also:
- Constant Field Values
-
-