@runloop/api-client - v1.18.1
    Preparing search index...

    Interface AxonEventView

    interface AxonEventView {
        axon_id: string;
        event_type: string;
        origin: "EXTERNAL_EVENT" | "AGENT_EVENT" | "USER_EVENT" | "SYSTEM_EVENT";
        payload: string;
        sequence: number;
        source: string;
        timestamp_ms: number;
    }
    Index

    Properties

    axon_id: string

    The axon identifier.

    event_type: string

    Event type (e.g. push, pull_request).

    origin: "EXTERNAL_EVENT" | "AGENT_EVENT" | "USER_EVENT" | "SYSTEM_EVENT"

    Event origin.

    payload: string

    JSON-encoded event payload.

    sequence: number

    Monotonic sequence number.

    source: string

    Event source (e.g. github, slack).

    timestamp_ms: number

    Timestamp in milliseconds since epoch.