@sumup/sdk
Version:
The official TypeScript SDK for the SumUp API
13 lines • 591 B
TypeScript
/**
* Transaction Status
*
* Current status of the transaction.
*
* - `PENDING`: The transaction has been created but its final outcome is not known yet.
* - `SUCCESSFUL`: The transaction completed successfully.
* - `CANCELLED`: The transaction was cancelled or otherwise reversed before completion.
* - `FAILED`: The transaction attempt did not complete successfully.
* - `REFUNDED`: The transaction was refunded in full or in part.
*/
export type TransactionStatus = "SUCCESSFUL" | "CANCELLED" | "FAILED" | "PENDING" | "REFUNDED";
//# sourceMappingURL=transaction-status.d.ts.map