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

GooglePlayDeveloperReportingV1beta1ErrorReport

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

An error report received for an app. There reports are produced by the Android platform code when a (potentially fatal) error condition is detected. Identical reports from many users will be deduplicated and coalesced into a single ErrorReport. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.

interface GooglePlayDeveloperReportingV1beta1ErrorReport {
eventTime?: Date;
issue?: string;
name?: string;
reportText?: string;
type?: "ERROR_TYPE_UNSPECIFIED" | "APPLICATION_NOT_RESPONDING" | "CRASH";
vcsInformation?: string;
}

§Properties

§

The app version on which an event in this error report occurred on.

§

A device model on which an event in this error report occurred on.

§
eventTime?: Date
[src]

Start of the hour during which the latest event in this error report occurred.

§
issue?: string
[src]

The issue this report was associated with. 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 a different issue.

§
name?: string
[src]

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

§

The OS version on which an event in this error report occurred on.

§
reportText?: string
[src]

Textual representation of the error report. These textual reports are produced by the platform. The reports are then sanitized and filtered to remove any potentially sensitive information. Although their format is fairly stable, they are not entirely meant for machine consumption and we cannot guarantee that there won't be subtle changes to the formatting that may break systems trying to parse information out of the reports.

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

Type of the error for which this report was generated.

§
vcsInformation?: string
[src]

Version control system information from BUNDLE-METADATA/version-control-info.textproto or META-INF/version-control-info.textproto of the app bundle or APK, respectively.