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

Report

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

Response message for the GetReport method. A report consists of the results of a query over an application's events. The events may be filtered by various criteria defined in the filters proto. The result will consist of a number of paginated groups, of a type relevant to the report such as issues or device models.

interface Report {
readonly displayName?: string;
groups?: ReportGroup[];
name?: string;
readonly nextPageToken?: string;
readonly totalSize?: number;
usage?: string;
}

§Properties

§
readonly displayName?: string
[src]

Output only. The displayable title of the report.

§
groups?: ReportGroup[]
[src]

Aggregate event statistics in the report will be grouped by a dimension, such as by issue or by version. The response contains one element per group, and all ReportGroup messages will have the same parent field.

§
name?: string
[src]

The name of the report. Format: "projects/{project}/apps/{app_id}/reports/{report}".

§
readonly nextPageToken?: string
[src]

Output only. A page token used to retrieve additional report groups. If this field is not present, there are no subsequent pages available to retrieve.

§
readonly totalSize?: number
[src]

Output only. The total number of groups retrievable by the request.

§
usage?: string
[src]

Usage instructions for the report with a description of the result metrics. This field contains a description of the underlying query and describes the expected response data with any known caveats. This string can be displayed in the UI of any integration that offers comprehensive access to all Crashlytics reports.