/** * 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'; /** * CreateFolderResponse represents the response returned after successfully creating a new folder. This message provides comprehensive details about the newly created folder structure, including its metadata and organizational context. Key features: - Complete folder metadata - Hierarchical information - Access control details - Creation timestamps - Storage location details Usage example: The response includes a FolderMetadata object containing all necessary information about the created folder, such as: - Unique folder identifier - Parent folder relationship - Creation and modification timestamps - Access permissions - Storage path information */ export declare class CreateFolderResponse { 'folder'?: FolderMetadata; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }