System message.

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

Hierarchy

  • IBase<"systemMessage">
    • ISystemMessage

Properties

Properties

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

Creation timestamp of the history.

id: string

Primary key of the history.

text: string

The text content.

type: "systemMessage"

Discriminator type.