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

18 lines (17 loc) 667 B
/** @description Object containing the specific input details for PayPal payments completed by the merchant. */ export interface CompletePaymentProduct840SpecificInput { /** * @description Indicates whether the PayPal JavaScript SDK flow is used. * * true = The PayPal JavaScript SDK flow is used. * * false = The PayPal JavaScript SDK flow is not used. * Default value is false. * @default false * @example true */ javaScriptSdkFlow?: boolean; /** * @description Confirmation of the order status in case of PayPal SDK integration. * @example CONFIRM_ORDER_STATUS */ action: 'CONFIRM_ORDER_STATUS'; }