UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

20 lines 1.02 kB
/** * @description * - WAITING_FOR_PAYMENT - There does not yet exist a PaymentExecution nor a PaymentInformation for this * Checkout. * - PAYMENT_NOT_COMPLETED - There exists a PaymentExecution or a PaymentInformation for this Checkout, but all * or some part of the total amount is still unpaid. * - PAYMENT_COMPLETED - There exists a PaymentExecution or a PaymentInformation for this Checkout and the * total amount is fully paid. * - NO_PAYMENT - Checkout was created and deleted. No Payment Execution and no other actions can be triggered * on the Checkout. * @example WAITING_FOR_PAYMENT */ export var PaymentStatus; (function (PaymentStatus) { PaymentStatus["WAITING_FOR_PAYMENT"] = "WAITING_FOR_PAYMENT"; PaymentStatus["PAYMENT_NOT_COMPLETED"] = "PAYMENT_NOT_COMPLETED"; PaymentStatus["PAYMENT_COMPLETED"] = "PAYMENT_COMPLETED"; PaymentStatus["NO_PAYMENT"] = "NO_PAYMENT"; })(PaymentStatus || (PaymentStatus = {})); //# sourceMappingURL=PaymentStatus.js.map