import { FundingSourceDto } from './fundingSourceDto';
export interface CreateBatchDto {
    funding_source?: FundingSourceDto;
    metadata?: {
        [key: string]: string;
    };
    name?: string;
    remarks?: string;
    request_id: string;
    transfer_date?: string;
}
export declare namespace CreateBatchDto {
    const discriminator: string;
    const attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
}
//# sourceMappingURL=createBatchDto.d.ts.map