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

22 lines (21 loc) 932 B
import type { AmountOfMoney } from './AmountOfMoney.js'; import type { PaymentChannel } from './PaymentChannel.js'; import type { PaymentType } from './PaymentType.js'; export interface PaymentInformationRequest { amountOfMoney: AmountOfMoney; type: PaymentType; paymentChannel: PaymentChannel; /** * Format: int32 * @description Payment method identifier - please check the product documentation for a full overview of possible values. */ paymentProductId: number; /** * @description Unique reference of the PaymentInformation. In case of card present transactions, the reference from the ECR * or terminal will be used. It is always the reference for external transactions. * (e.g. card present payments, cash payments or payments processed by other payment providers). * * @example 6a891660b8cf16edaeb26f87d86f0b2f */ merchantReference?: string; }