/** * 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 { SharePermission } from './sharePermission'; /** * FileSharing manages link sharing for files. Features: - Secure link generation - Access permissions - Expiration settings - Access tracking */ export declare class FileSharing { 'id'?: string; 'fileId'?: string; 'sharedLink'?: string; 'permissionLevel'?: SharePermission; 'expiresAt'?: Date; 'createdAt'?: Date; 'lastAccessed'?: Date; 'isActive'?: boolean; 'password'?: string; 'maxAccesses'?: number; 'accessCount'?: number; 'deletedAt'?: 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 FileSharing { }