/** * 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 { APIKeyEnvironment } from './aPIKeyEnvironment'; import { ApiPermission } from './apiPermission'; import { ScopeType } from './scopeType'; export declare class TenantAPIKey { /** * Unique identifier for the tenant API key. */ 'id'?: string; /** * Name of the API key. */ 'keyName': string; /** * Prefix of the API key. */ 'keyPrefix': string; /** * Hashed API key. */ 'keyHash'?: string; /** * Unique key identifier. */ 'keyId': string; /** * Scopes assigned to the API key. */ 'scopes'?: Array; /** * Expiration date of the key. */ 'expiresAt'?: Date; /** * Timestamp when the key was created. */ 'createdAt'?: Date; /** * ID of the creator. */ 'createdBy'?: string; /** * Timestamp when the key was last used. */ 'lastUsed'?: Date; /** * Indicates if the key is active. */ 'isActive'?: boolean; 'environment'?: APIKeyEnvironment; 'rateLimit'?: number; /** * Allowed IP addresses (supports both IPv4 and IPv6 with CIDR notation). */ 'allowedIps'?: Array; /** * Allowed domains. */ 'allowedDomains'?: Array; 'permissions'?: Array; '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 TenantAPIKey { }