@lomray/microservice-payment-stripe
Version:
Stripe payment microservice based on NodeJS & inverted json.
18 lines (17 loc) • 478 B
TypeScript
/**
* Enum for storing transaction status
*/
declare enum TransactionStatus {
SUCCESS = "success",
IN_PROCESS = "inProcess",
REQUIRED_PAYMENT = "requiredPayment",
INITIAL = "initial",
EXPIRED = "expired",
REFUNDED = "refunded",
PARTIAL_REFUNDED = "partialRefunded",
REFUND_FAILED = "refundFailed",
REFUND_CANCELED = "refundCanceled",
REFUND_IN_PROCESS = "refundInProcess",
ERROR = "error"
}
export { TransactionStatus as default };