/** * 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. */ export declare class WorkspaceservicehttpTusHeaders { /** * Standard headers */ 'cacheControl'?: string; /** * Must be application/offset+octet-stream for PATCH */ 'contentType'?: string; /** * URL for the created resource */ 'location'?: string; /** * Comma-separated list of supported checksum algorithms */ 'tusChecksumAlgorithm'?: string; /** * Extension headers */ 'tusExtension'?: string; /** * Maximum allowed upload size */ 'tusMaxSize'?: number; /** * Core protocol headers */ 'tusResumable': string; /** * Comma-separated list of supported protocol versions */ 'tusVersion'?: string; /** * Algorithm and Base64 encoded checksum */ 'uploadChecksum'?: string; /** * Concatenation information */ 'uploadConcat'?: string; /** * Indicates deferred length (must be 1) */ 'uploadDeferLength'?: number; /** * When the upload will expire */ 'uploadExpires'?: string; /** * Total size of the upload */ 'uploadLength'?: number; /** * Base64 encoded key-value pairs */ 'uploadMetadata'?: string; /** * Current offset of the upload */ 'uploadOffset'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }