export declare class AccountPayoutAutoApplicationWebhookData {
    /**
    * The unique identifier of the balance account to which the payout schedule was unsuccessfully applied.
    */
    "balanceAccountId"?: string;
    /**
    * The unique identifier of the balance platform.
    */
    "balancePlatform"?: string;
    /**
    * The unique identifier of the balance platform payout schedule that was unsuccessfully applied to the balance account.
    */
    "balancePlatformPayoutScheduleId"?: string;
    /**
    * The reason why the payout schedule could not be applied.
    */
    "reason"?: string;
    /**
    * The unique identifier of the transfer instrument linked to the balance account. This transfer instrument is the counterparty account for the payout schedule that was unsuccessfully applied.
    */
    "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();
}
