/** * deleted conversation object */ export interface ConversationDeleted { /** The unique identifier for the conversation. */ id?: string; /** always conversation */ object?: "conversation"; /** Whether the conversation is deleted or not. */ deleted?: boolean; }