/** * 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. */ /** * GenerateFileEmbeddingsRequest represents a request to generate vector embeddings for a file\'s content. This asynchronous operation creates embeddings that can be used for semantic search and analysis. Required Fields: - user_id: The ID of the user requesting the embedding generation - file_id: The ID of the file to generate embeddings for - org_id: The organization context ID - tenant_id: The tenant context ID Example: ```protobuf message request { user_id: \"user123\" file_id: 456 org_id: 789 tenant_id: 101112 } ``` */ export declare class GenerateFileEmbeddingsBody { 'userId': string; 'orgId': string; 'tenantId': string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }