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

19 lines (18 loc) 855 B
/** * @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 declare enum PaymentStatus { WAITING_FOR_PAYMENT = "WAITING_FOR_PAYMENT", PAYMENT_NOT_COMPLETED = "PAYMENT_NOT_COMPLETED", PAYMENT_COMPLETED = "PAYMENT_COMPLETED", NO_PAYMENT = "NO_PAYMENT" }