/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { BackgroundJobStatus } from './backgroundJobStatus'; /** * GenerateFileEmbeddingsResponse represents the response to a file embedding generation request. Since embedding generation is an asynchronous operation, this contains status and tracking information. Fields: - status: Current status of the embedding generation job - job_id: Unique identifier for tracking the background job - estimated_completion_time: Estimated timestamp when embeddings will be ready */ export declare class GenerateFileEmbeddingsResponse { 'status'?: BackgroundJobStatus; 'jobId'?: string; 'estimatedCompletionTime'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace GenerateFileEmbeddingsResponse { }