ISPO SDK
    Preparing search index...

    Interface AgentSessionEvent

    Markdown
    interface AgentSessionEvent {
        actor: "user" | "agent" | "host" | "tool";
        id: string;
        kind: AgentSessionEventKind;
        payload: unknown;
        redacted?: boolean;
        sequence: number;
        sessionId: string;
        timestamp: string;
    }
    Index
    actor: "user" | "agent" | "host" | "tool"
    id: string
    payload: unknown
    redacted?: boolean
    sequence: number
    sessionId: string
    timestamp: string