import { Amount } from "./amount"; import { Balance } from "./balance"; import { DisbursementRepayment } from "./disbursementRepayment"; import { Fee } from "./fee"; import { FundsCollection } from "./fundsCollection"; export declare class Disbursement { /** * The unique identifier of the account holder that received the disbursement. */ "accountHolderId": string; "amount": Amount; /** * The unique identifier of the balance account that received the disbursement. */ "balanceAccountId": string; "balances": Balance; "fee": Fee; /** * Contains information about the accounts that Adyen uses to collect funds related to repayments. */ "fundsCollections"?: Array; /** * The unique identifier of the grant related to the disbursement. */ "grantId": string; /** * The unique identifier of the disbursement. */ "id": string; "repayment": DisbursementRepayment; 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(); }