/** * 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 { FolderMetadata } from './folderMetadata'; /** * UpdateFolderRequest represents a request to update an existing folder\'s metadata. This message contains the updated folder metadata, allowing modification of folder attributes while maintaining proper access controls and organizational hierarchy. Key features: - Complete folder metadata updates - Maintains folder relationships - Preserves access controls - Supports audit trail */ export declare class UpdateFolderRequest { 'folder'?: FolderMetadata; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }