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

ReportGroup

import type { ReportGroup } from "https://googleapis.deno.dev/v1/firebasecrashlytics:v1alpha.ts";

A group of results in an EventReport. In any report, the group_parent field is strictly the same type for all of the groups in any collection.

interface ReportGroup {
browser?: Browser;
device?: Device;
issue?: Issue;
metrics?: IntervalMetrics[];
operatingSystem?: OperatingSystem;
subgroups?: ReportGroup[];
variant?: IssueVariant;
version?: Version;
webMetricsGroup?: WebMetricsGroup;
}

§Properties

§
browser?: Browser
[src]

Browser metrics group.

§
device?: Device
[src]

Device metrics group.

§
issue?: Issue
[src]

Issue metrics group.

§

Scalar metrics will contain a single object covering the entire interval, while time-dimensioned graphs will contain one per time grain.

§
operatingSystem?: OperatingSystem
[src]

Operating system metrics group.

§
subgroups?: ReportGroup[]
[src]

When applicable, this field contains additional nested groupings. For example, events can be grouped by operating system and by operating system version.

§

Issue variant metrics group.

§
version?: Version
[src]

Version metrics group.

§
webMetricsGroup?: WebMetricsGroup
[src]

Web metrics group.