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

16 lines (15 loc) 718 B
import type { MobilePaymentNetwork } from './MobilePaymentNetwork.js'; /** @description Object containing additional Information needed for Click To Pay processing. */ export interface PaymentProduct5002SpecificInput { network?: MobilePaymentNetwork; /** * @description JWS Token Value (checkoutResponseSignature) as received in the Checkout Response on Client Side, Base64URL encoded. * @example rhHAQUrR118u[...]cwDw== */ paymentCheckoutData?: string; /** * @description DPA Identifier provided by PAYONE during client side initialization for the corresponding card type selected by the end consumer in the Click to Pay flow. * @maxLength 64 */ srcDpaId?: string; }