import { AI_MODEL_KEYS, AI_MODEL_KEY_TYPES } from "../constants"; export interface IAiModelKeyAttributes { id: string; key: AI_MODEL_KEYS; hasValue: string; type: AI_MODEL_KEY_TYPES; description: string; version: number; createdBy?: string; updatedBy?: string; deletedBy?: string; createdAt?: Date; updatedAt?: Date; deletedAt?: Date; }