interface DeviceProfileData {
    identifier: string;
    location?: Record<string, unknown> | Geolocation;
    metadata?: {
        browser: { [key: string]: null | string | number };
        hardware: {
            display: { [key: string]: null | string | number };
            [key: string]: any;
        };
        platform: { [key: string]: null
        | string
        | number };
    };
}

Properties

identifier: string
location?: Record<string, unknown> | Geolocation
metadata?: {
    browser: { [key: string]: null | string | number };
    hardware: {
        display: { [key: string]: null | string | number };
        [key: string]: any;
    };
    platform: { [key: string]: null
    | string
    | number };
}