import { ICreateBatchFileDetails } from '../models/CreateBatchFile'; import { IBaseResponse } from './base'; export interface ICreateBatchFileResponse extends IBaseResponse { fileContent: string; fileExtension: string; details: ICreateBatchFileDetails; }