/** * This file was auto-generated by Fern from our API Definition. */ import * as Zep from "../index.js"; export interface Message { /** The content of the message. */ content: string; /** The timestamp of when the message was created. */ createdAt?: string; /** The metadata associated with the message. */ metadata?: Record; /** Customizable name of the sender of the message (e.g., "john", "sales_agent"). */ name?: string; /** Whether the message has been processed. */ processed?: boolean; /** The role of message sender (e.g., "user", "system"). */ role: Zep.RoleType; /** The unique identifier of the message. */ uuid?: string; }