/** * 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 { WorkspaceservicehttpChecksumInfo } from './workspaceservicehttpChecksumInfo'; import { WorkspaceservicehttpStorageInfo } from './workspaceservicehttpStorageInfo'; export declare class WorkspaceservicehttpResourceInfo { /** * Checksum information (if available) */ 'checksum'?: WorkspaceservicehttpChecksumInfo; /** * Creation information */ 'createdAt'?: string; 'expiresAt'?: string; /** * Resource identifier */ 'id'?: string; /** * Whether this is a final upload */ 'isFinal'?: boolean; /** * Whether this is a partial upload */ 'isPartial'?: boolean; /** * Total size in bytes */ 'length'?: number; /** * Upload metadata */ 'metadata'?: { [key: string]: string | undefined; }; /** * Current offset */ 'offset'?: number; /** * URLs of partial uploads for final upload */ 'parts'?: Array; /** * Storage information */ 'storage'?: WorkspaceservicehttpStorageInfo; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }