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

GooglePlayDeveloperReportingV1beta1ErrorIssue

import type { GooglePlayDeveloperReportingV1beta1ErrorIssue } from "https://googleapis.deno.dev/v1/playdeveloperreporting:v1beta1.ts";

A group of related ErrorReports received for an app. Similar error reports are grouped together into issues with a likely identical root cause. Please note: this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more recent error reports being assigned to different issues. This could also cause some issues disappearing entirely and being replaced by new ones. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.

interface GooglePlayDeveloperReportingV1beta1ErrorIssue {
cause?: string;
distinctUsers?: bigint;
distinctUsersPercent?: GoogleTypeDecimal;
errorReportCount?: bigint;
issueUri?: string;
lastErrorReportTime?: Date;
location?: string;
name?: string;
readonly sampleErrorReports?: string[];
type?: "ERROR_TYPE_UNSPECIFIED" | "APPLICATION_NOT_RESPONDING" | "CRASH";
}

§Properties

§
cause?: string
[src]

Cause of the issue. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the type of ANR that occurred, e.g., 'Input dispatching timed out'. * CRASH: for Java unhandled exception errors, the type of the innermost exception that was thrown, e.g., IllegalArgumentException. For signals in native code, the signal that was raised, e.g. SIGSEGV.

§
distinctUsers?: bigint
[src]

An estimate of the number of unique users who have experienced this issue (only considering occurrences matching the filters and within the requested time period).

§
distinctUsersPercent?: GoogleTypeDecimal
[src]

An estimated percentage of users affected by any issue that are affected by this issue (only considering occurrences matching the filters and within the requested time period).

§
errorReportCount?: bigint
[src]

The total number of error reports in this issue (only considering occurrences matching the filters and within the requested time period).

§

The earliest (inclusive) app version appearing in this ErrorIssue in the requested time period (only considering occurrences matching the filters).

§

The smallest OS version in which this error cluster has occurred in the requested time period (only considering occurrences matching the filters and within the requested time period).

§
issueUri?: string
[src]

Link to the issue in Android vitals in the Play Console.

§

The latest (inclusive) app version appearing in this ErrorIssue in the requested time period (only considering occurrences matching the filters).

§
lastErrorReportTime?: Date
[src]

Start of the hour during which the last error report in this issue occurred.

§

The latest OS version in which this error cluster has occurred in the requested time period (only considering occurrences matching the filters and within the requested time period).

§
location?: string
[src]

Location where the issue happened. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped responding. * CRASH: the likely method name that caused the error.

§
name?: string
[src]

Identifier. The resource name of the issue. Format: apps/{app}/{issue}

§
readonly sampleErrorReports?: string[]
[src]

Output only. Sample error reports which belong to this ErrorIssue. Note: currently a maximum of 1 per ErrorIssue is supported. Format: "apps/{app}/{report}"

§
type?: "ERROR_TYPE_UNSPECIFIED" | "APPLICATION_NOT_RESPONDING" | "CRASH"
[src]

Type of the errors grouped in this issue.