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

Issue

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

An issue describes a set of similar events that have been analyzed by Crashlytics and grouped together. All events within an issue will be of the same error_type: crash, non-fatal exception or ANR. All events within an issue will contain similar stack traces in their blamed thread.

interface Issue {
readonly errorType?:
| "ERROR_TYPE_UNSPECIFIED"
| "FATAL"
| "NON_FATAL"
| "ANR";
readonly firstSeenTime?: Date;
readonly firstSeenVersion?: string;
readonly id?: string;
readonly lastSeenTime?: Date;
readonly lastSeenVersion?: string;
readonly name?: string;
readonly notesCount?: bigint;
readonly sampleEvent?: string;
readonly signals?: IssueSignals[];
readonly state?:
| "STATE_UNSPECIFIED"
| "OPEN"
| "CLOSED"
| "MUTED";
readonly stateUpdateTime?: Date;
readonly subtitle?: string;
readonly title?: string;
readonly uri?: string;
readonly variants?: IssueVariant[];
}

§Properties

§
readonly errorType?: "ERROR_TYPE_UNSPECIFIED" | "FATAL" | "NON_FATAL" | "ANR"
[src]

Output only. Immutable. Indicates whether this issue is a crash, non-fatal exception, or ANR.

§
readonly firstSeenTime?: Date
[src]

Output only. Immutable. The first time this issue was seen.

§
readonly firstSeenVersion?: string
[src]

Output only. Immutable. The first app display_version in which this issue was seen, populated for mobile issues only.

§
readonly id?: string
[src]

Output only. Immutable. Unique identifier for the issue.

§
readonly lastSeenTime?: Date
[src]

Output only. The most recent time this issue was seen.

§
readonly lastSeenVersion?: string
[src]

Output only. The most recent app display_version in which this issue was seen, populated for mobile issues only.

§
readonly name?: string
[src]

Required. Output only. Immutable. Identifier. The name of the issue resource. Format: "projects/{project}/apps/{app}/issues/{issue}".

§
readonly notesCount?: bigint
[src]

Output only. The number of notes attached to an issue.

§
readonly sampleEvent?: string
[src]

Output only. The resource name for a sample event in this issue.

§
readonly signals?: IssueSignals[]
[src]

Output only. Immutable. Distinctive characteristics assigned by the Crashlytics analyzer.

§
readonly state?: "STATE_UNSPECIFIED" | "OPEN" | "CLOSED" | "MUTED"
[src]

Output only. Indicates whether this issue is open, closed or muted. For details on how issue states change without user actions, see Regressed Issues.

§
readonly stateUpdateTime?: Date
[src]

Output only. The time at which the issue state was last changed.

§
readonly subtitle?: string
[src]

Output only. Immutable. Caption subtitle. This is usually a symbol or an exception message.

§
readonly title?: string
[src]

Output only. Immutable. Caption title. This is usually a source file or method name.

§
readonly uri?: string
[src]

Output only. Provides a link to the Issue on the Firebase console. When this Issue is obtained as part of a Report, then the link will be configured with the same time interval and filters as the request.

§
readonly variants?: IssueVariant[]
[src]

Output only. Immutable. The top 12 variants (subgroups) within the issue. Variants group events within an issue that are very similar. A single result implies that the variant is the same as the parent issue. This field will be empty when multiple issues are requested. Request a single issue to list variants.