securepay
Version:
https://www.securepay.com.au/
23 lines (22 loc) • 641 B
TypeScript
export declare enum AlipayTransactionStatus {
/**
* The payment has been successful.
*/
PAID = "paid",
/**
* The payment has been failed.
*/
FAILED = "failed",
/**
* The transaction is in pending state or it has not terminated, e.g. waiting on customer authorization
*/
INPROGRESS = "inprogress",
/**
* The result of execution is not determined(e.g. due to connectivity issues). To verify the status in this case use retrieve Alipay get order details endpoint.
*/
UNKNOWN = "unknown",
/**
* The payment has been cancelled
*/
CANCELLED = "cancelled"
}