/** * User Service * Solomon AI User Service API * * The version of the OpenAPI document: 0.1 * 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 { ApiPermission } from './apiPermission'; export declare class APIKey { 'id'?: string; 'name'?: string; 'keyId'?: string; 'hashedKey'?: string; 'permissions'?: Array; 'createdAt'?: Date; 'expiresAt'?: Date; 'revoked'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }