interface AgenticaInitializeEvent {
    created_at: string & Format<"date-time">;
    id: string;
    toJSON: () => IInitialize;
    type: "initialize";
}

Hierarchy

  • AgenticaEventBase<"initialize">
    • AgenticaInitializeEvent

Properties

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

Creation timestamp of the event.

id: string

Primary key of the event.

toJSON: () => IInitialize
type: "initialize"

Discriminator type.