import type { SortingMethod } from './sorting-method';
import type { StorageMethod } from './storage-method';
import type { StorageType } from './storage-type';
import type { ValidationParamsRequest } from './validation-params-request';
export interface DataRequest {
    'chunk_size'?: number | null;
    'image_quality': number;
    'start_frame'?: number;
    'stop_frame'?: number;
    'frame_filter'?: string;
    'client_files'?: Array<File>;
    'server_files'?: Array<string>;
    'remote_files'?: Array<string>;
    'use_zip_chunks'?: boolean;
    'server_files_exclude'?: Array<string>;
    'cloud_storage_id'?: number | null;
    'use_cache'?: boolean;
    'copy_data'?: boolean;
    'storage_method'?: StorageMethod;
    'storage'?: StorageType;
    'sorting_method'?: SortingMethod;
    'filename_pattern'?: string | null;
    'job_file_mapping'?: Array<Array<string>>;
    'upload_file_order'?: Array<string>;
    'validation_params'?: ValidationParamsRequest | null;
}
