export declare class PayoutScheduleExecutionDetails {
    /**
    * Human readable reason for why execution was not successful if applicable.
    */
    "reason"?: string;
    /**
    * Reason Code for why execution was not successful if applicable.
    */
    "reasonCode"?: string;
    /**
    * The id of the transfer from executing the payout.
    */
    "transferId"?: 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();
}
