interface AgenticaSystemMessageHistory {
    created_at: string & Format<"date-time">;
    id: string;
    text: string;
    toJSON: () => ISystemMessage;
    type: "systemMessage";
}

Hierarchy

  • AgenticaHistoryBase<"systemMessage", ISystemMessage>
    • AgenticaSystemMessageHistory

Properties

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

Creation timestamp of the history.

id: string

Primary key of the history.

text: string
toJSON: () => ISystemMessage
type: "systemMessage"

Discriminator type.