pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 665 B
TypeScript
/**
* @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"
}