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

20 lines (19 loc) 515 B
import type { AmountOfMoney } from './AmountOfMoney.js'; import type { PaymentReferences } from './PaymentReferences.js'; /** * Object containing details from the created payout. */ export interface PayoutOutput { /** * Amount of money details. */ amountOfMoney?: AmountOfMoney; /** * Payment references associated with the payout. */ references?: PaymentReferences; /** * Payment method identifier based on the paymentProductId. */ paymentMethod?: string; }