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) 774 B
import type { PaymentProduct840SpecificOutput } from './PaymentProduct840SpecificOutput.js'; import type { PaymentProductId } from './PaymentProductId.js'; /** @description Object containing the redirect payment product details. */ export interface RedirectPaymentMethodSpecificOutput { paymentProductId?: PaymentProductId; paymentProduct840SpecificOutput?: PaymentProduct840SpecificOutput; /** * @description ID of the token. This property is populated when the payment was done with a token. * @example 0ca037cc-9079-4df7-8f6f-f2a3443ee521 */ paymentProcessingToken?: string; /** * @description Token to identify the card in the reporting. * @example 12a037cc-833d-8b45-8f6f-11c34171f4e1 */ reportingToken?: string; }