/* tslint:disable */ /* eslint-disable */ /** * fundingsources * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { AccountDetails } from './account-details'; // May contain unused imports in some cases // @ts-ignore import type { Agent } from './agent'; // May contain unused imports in some cases // @ts-ignore import type { Party } from './party'; // May contain unused imports in some cases // @ts-ignore import type { PaymentIdentification } from './payment-identification'; // May contain unused imports in some cases // @ts-ignore import type { PaymentTypeInformation } from './payment-type-information'; // May contain unused imports in some cases // @ts-ignore import type { RemittanceInformation } from './remittance-information'; /** * The payment information including account identification details */ export interface PaymentDetails { creditor?: Party; creditorAccount?: AccountDetails; creditorAgent?: Agent; debtor?: Party; debtorAccount?: AccountDetails; debtorAgent?: Agent; paymentIdentification?: PaymentIdentification; paymentTypeInformation?: PaymentTypeInformation; remittanceInformation?: RemittanceInformation; }