/** * 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 { EventType } from './eventType'; import { StorageUnit } from './storageUnit'; export declare class OrgUsageLog { /** * Unique identifier for the usage log. */ 'id'?: string; /** * Timestamp of the log entry. */ 'timestamp'?: Date; 'eventType'?: EventType; /** * Quantity of the resource used. */ 'quantity'?: string; 'unit'?: StorageUnit; /** * Details in JSON format. */ 'details'?: string; '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 OrgUsageLog { }