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