Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Key

import type { Key } from "https://googleapis.deno.dev/v1/chromeuxreport:v1.ts";

Key defines all the dimensions that identify this record as unique.

interface Key {
effectiveConnectionType?: string;
formFactor?:
| "ALL_FORM_FACTORS"
| "PHONE"
| "DESKTOP"
| "TABLET";
origin?: string;
url?: string;
}

§Properties

§
effectiveConnectionType?: string
[src]

The effective connection type is the general connection class that all users experienced for this record. This field uses the values ["offline", "slow-2G", "2G", "3G", "4G"] as specified in: https://wicg.github.io/netinfo/#effective-connection-types If the effective connection type is unspecified, then aggregated data over all effective connection types will be returned.

§
formFactor?: "ALL_FORM_FACTORS" | "PHONE" | "DESKTOP" | "TABLET"
[src]

The form factor is the device class that all users used to access the site for this record. If the form factor is unspecified, then aggregated data over all form factors will be returned.

§
origin?: string
[src]

Origin specifies the origin that this record is for. Note: When specifying an origin, data for loads under this origin over all pages are aggregated into origin level user experience data.

§
url?: string
[src]

Url specifies a specific url that this record is for. Note: When specifying a "url" only data for that specific url will be aggregated.