/** * 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'; import { ProfileType } from './profileType'; export declare class CreateAPIKeyRequest { 'userId'?: string; 'profileType'?: ProfileType; 'name'?: string; 'permissions'?: Array; 'expiresAt'?: 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 CreateAPIKeyRequest { }