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
§
metrics?: IntervalMetrics[]
[src]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.
§
variant?: IssueVariant
[src]Issue variant metrics group.
§
webMetricsGroup?: WebMetricsGroup
[src]Web metrics group.