FP-Devicer - v1.6.1
    Preparing search index...

    Interface FPUserDataSet

    Raw browser fingerprint data collected from a user's device. Encompasses navigator properties, screen metrics, installed plugins, font enumeration, and high-entropy client hints.

    interface FPUserDataSet {
        appCodeName?: string;
        appMinorVersion?: string;
        appName?: string;
        appVersion?: string;
        audio?: string;
        buildID?: string;
        canvas?: string;
        cookieEnabled?: boolean;
        deviceMemory?: string | number;
        doNotTrack?: string | boolean;
        fonts?: string[];
        hardwareConcurrency?: number;
        highEntropyValues?: {
            architecture?: string;
            bitness?: string;
            brands?: { brand: string; version: string }[];
            mobile?: boolean;
            model?: string;
            platform?: string;
            platformVersion?: string;
            uaFullVersion?: string;
        };
        language?: string;
        languages?: string[];
        mimeTypes?: { description: string; suffixes: string; type: string }[];
        platform?: string;
        plugins?: { description: string; name: string }[];
        product?: string;
        productSub?: string;
        screen?: {
            colorDepth?: number;
            height: number;
            orientation?: { angle: number; type: string };
            pixelDepth?: number;
            width: number;
        };
        timezone?: string;
        userAgent?: string;
        vendor?: string;
        vendorSub?: string;
        webgl?: string;
    }
    Index

    Properties

    appCodeName?: string
    appMinorVersion?: string
    appName?: string
    appVersion?: string
    audio?: string
    buildID?: string
    canvas?: string
    cookieEnabled?: boolean
    deviceMemory?: string | number
    doNotTrack?: string | boolean
    fonts?: string[]
    hardwareConcurrency?: number
    highEntropyValues?: {
        architecture?: string;
        bitness?: string;
        brands?: { brand: string; version: string }[];
        mobile?: boolean;
        model?: string;
        platform?: string;
        platformVersion?: string;
        uaFullVersion?: string;
    }
    language?: string
    languages?: string[]
    mimeTypes?: { description: string; suffixes: string; type: string }[]
    platform?: string
    plugins?: { description: string; name: string }[]
    product?: string
    productSub?: string
    screen?: {
        colorDepth?: number;
        height: number;
        orientation?: { angle: number; type: string };
        pixelDepth?: number;
        width: number;
    }
    timezone?: string
    userAgent?: string
    vendor?: string
    vendorSub?: string
    webgl?: string