/** * Generated by orval v8.4.2 🍺 * Do not edit manually. * DreamChat API * The DreamChat API documentation * OpenAPI spec version: 1.0.0 */ import type { CharacterResponseDtoAttributes } from './characterResponseDtoAttributes'; import type { CharacterResponseDtoConfig } from './characterResponseDtoConfig'; export interface CharacterResponseDto { /** Character ID */ id: string; /** Character name */ name: string; /** Avatar URL */ avatarUrl?: string; /** Personality prompt */ personalityPrompt: string; /** Custom attributes */ attributes: CharacterResponseDtoAttributes; /** Character configuration */ config: CharacterResponseDtoConfig; /** Whether character is public */ isPublic: boolean; /** Creation date */ createdAt: string; /** Last update date */ updatedAt: string; /** User ID */ userId: string; }