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

30 lines (29 loc) 940 B
import type { AmountOfMoney } from './AmountOfMoney.js'; import type { PaymentInstructions } from './PaymentInstructions.js'; import type { PaymentReferences } from './PaymentReferences.js'; /** * @description Object containing Capture details. */ export interface CaptureOutput { /** * @description Amount of money related to the capture. */ amountOfMoney?: AmountOfMoney; /** * @description Additional parameters for the transaction in JSON format. * This field must not contain any personal data. */ merchantParameters?: string; /** * @description References associated with the capture. */ references?: PaymentReferences; /** * @description Payment method identifier used by the payment engine. */ paymentMethod?: string; /** * @description Payment instructions associated with the capture. */ paymentInstructions?: PaymentInstructions; }