FP-Devicer - v2.0.2
    Preparing search index...

    Interface IdentifyPostProcessorPayload

    Inputs supplied to an identify post-processor after the core match decision.

    interface IdentifyPostProcessorPayload {
        baseResult: IdentifyResult;
        cacheHit: boolean;
        candidatesCount: number;
        context?: IdentifyContext;
        durationMs: number;
        incoming: FPUserDataSet;
        matched: boolean;
        result: IdentifyResult;
    }
    Index

    Properties

    baseResult: IdentifyResult

    Core identify result before any plugin-specific enrichment is applied.

    cacheHit: boolean

    Whether the request was satisfied from the dedup cache.

    candidatesCount: number

    Number of candidate devices considered during the matching pass.

    context?: IdentifyContext

    Original request context passed to DeviceManager.identify.

    durationMs: number

    End-to-end identify latency in milliseconds.

    incoming: FPUserDataSet

    Incoming fingerprint being identified.

    matched: boolean

    Whether the request matched an existing device rather than creating a new one.

    Mutable result as enriched by previously executed post-processors.