/** * 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. */ /** * CreateDocumentSnapshotRequest represents a request to create a new document snapshot. Document snapshots preserve the state of a file at a specific point in time. Required Fields: - user_id: The ID of the user creating the snapshot - file_id: The ID of the file to snapshot - 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 CreateDocumentSnapshotBody { '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; }[]; }