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

17 lines (16 loc) 669 B
import type { AmountOfMoney } from './AmountOfMoney.js'; import type { PaymentReferences } from './PaymentReferences.js'; /** @description Object containing Refund details */ export interface RefundOutput { amountOfMoney?: AmountOfMoney; /** * @description It allows you to store additional parameters for the transaction in JSON format. * This field must not contain any personal data. * * @example {'SessionID':'126548354','ShopperID':'7354131'} */ merchantParameters?: string; references?: PaymentReferences; /** @description Payment method identifier used by the our payment engine. */ paymentMethod?: string; }