FlowGuard API - v1.2.0-rc.2
    Preparing search index...

    Interface EventVerification

    Result of a single event verification.

    interface EventVerification {
        index: number;
        eventId: string;
        valid: boolean;
        reason: string | null;
    }
    Index

    Properties

    index: number

    Event index in the trail (0-based).

    eventId: string

    Event ID.

    valid: boolean

    Whether this event passed verification.

    reason: string | null

    Reason for failure (null if valid).