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

13 lines (12 loc) 665 B
/** * @description Indicates which payment endpoints can be used for the respective Checkout. * The systems offers two alternatives to trigger a payment and consecutive events: * OrderManagementCheckoutActions or the Payment Execution resource. * Both alternatives can be used simultaneously but once one of the Payment Execution endpoints is used the * Order Management endpoints can no longer be used for that Checkout since it is no longer possible to match * payment events to items of the Checkout. */ export declare enum AllowedPaymentActions { OrderManagement = "ORDER_MANAGEMENT", PaymentExecution = "PAYMENT_EXECUTION" }