UNPKG

@adyen/api-library

Version:

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

32 lines (31 loc) 1.03 kB
export declare class GrantCounterparty { /** * The unique identifier of the account holder that receives the grant. */ "accountHolderId"?: string; /** * The unique identifier of the balance account where the funds are disbursed. The balance account must belong to the specified account holder. */ "balanceAccountId"?: string; /** * The unique identifier of the transfer instrument where the funds are disbursed. The transfer instrument must belong to the legal entity of the specified account holder. */ "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(); }