interface AgenticaUserMessageHistory {
    contents: AgenticaUserMessageContent[];
    created_at: string & Format<"date-time">;
    id: string;
    toJSON: () => IAgenticaHistoryJson.IUserMessage;
    type: "userMessage";
}

Hierarchy

Properties

created_at: string & Format<"date-time">

Creation timestamp of the history.

id: string

Primary key of the history.

type: "userMessage"

Discriminator type.