UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

34 lines (33 loc) 1.23 kB
import { BankAccountV3 } from "./bankAccountV3"; import { Card } from "./card"; import { TransferNotificationMerchantData } from "./transferNotificationMerchantData"; export declare class TransferNotificationCounterParty { /** * The unique identifier of the counterparty [balance account](https://docs.adyen.com/api-explorer/balanceplatform/latest/post/balanceAccounts#responses-200-id). */ "balanceAccountId"?: string; "bankAccount"?: BankAccountV3 | null; "card"?: Card | null; "merchant"?: TransferNotificationMerchantData | null; /** * The unique identifier of the counterparty [transfer instrument](https://docs.adyen.com/api-explorer/legalentity/latest/post/transferInstruments#responses-200-id). */ "transferInstrumentId"?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }