/** * Represents one file in a batch upload. * @export * @class BatchFileModel */ export declare class BatchFileModel { /** * @type {number} * @memberof BatchFileModel */ id?: number | undefined; /** * @type {number} * @memberof BatchFileModel */ batchId?: number | undefined; /** * @type {string} * @memberof BatchFileModel */ name?: string | undefined; /** * @type {string} * @memberof BatchFileModel */ content: string; /** * @type {number} * @memberof BatchFileModel */ contentLength?: number | undefined; /** * @type {string} * @memberof BatchFileModel */ contentType?: string | undefined; /** * @type {string} * @memberof BatchFileModel */ fileExtension?: string | undefined; /** * @type {string} * @memberof BatchFileModel */ filePath?: string | undefined; /** * @type {number} * @memberof BatchFileModel */ errorCount?: number | undefined; }