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

ProjectsAppsEventsListOptions

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

Additional options for FirebaseCrashlytics#projectsAppsEventsList.

interface ProjectsAppsEventsListOptions {
[filter.browser.displayNames]?: string;
[filter.device.displayNames]?: string;
[filter.device.formFactors]?:
| "FORM_FACTOR_UNSPECIFIED"
| "PHONE"
| "TABLET"
| "DESKTOP"
| "TV"
| "WATCH";
[filter.interval.endTime]?: Date;
[filter.interval.startTime]?: Date;
[filter.issue.content]?: string;
[filter.issue.errorTypes]?:
| "ERROR_TYPE_UNSPECIFIED"
| "FATAL"
| "NON_FATAL"
| "ANR";
[filter.issue.id]?: string;
[filter.issue.signals]?:
| "SIGNAL_UNSPECIFIED"
| "SIGNAL_EARLY"
| "SIGNAL_FRESH"
| "SIGNAL_REGRESSED"
| "SIGNAL_REPETITIVE";
[filter.issue.state]?:
| "STATE_UNSPECIFIED"
| "OPEN"
| "CLOSED"
| "MUTED";
[filter.issue.states]?:
| "STATE_UNSPECIFIED"
| "OPEN"
| "CLOSED"
| "MUTED";
[filter.issue.variantId]?: string;
[filter.operatingSystem.displayNames]?: string;
[filter.version.displayNames]?: string;
pageSize?: number;
pageToken?: string;
readMask?: string;
}

§Properties

§
[filter.browser.displayNames]?: string
[src]

Optional. Only count events from the given browser. This string matches Browser.display_name. Format: "name (display_version)" e.g. "Chrome (123)", or just "name" for all possible versions, e.g. simply "Chrome".

§
[filter.device.displayNames]?: string
[src]

Only counts events from the given Device model. This string matches Device.display_name. Format: "manufacturer (model)" e.g. "Google (Pixel 6)", or just "manufacturer" for all possible models, e.g. simply "Google". Note that a device's marketing_name field can not be used for filtering.

§
[filter.device.formFactors]?: "FORM_FACTOR_UNSPECIFIED" | "PHONE" | "TABLET" | "DESKTOP" | "TV" | "WATCH"
[src]

Only counts events from devices with the given form factor (e.g. phone or tablet).

§
[filter.interval.endTime]?: Date
[src]

Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.

§
[filter.interval.startTime]?: Date
[src]

Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.

§
[filter.issue.content]?: string
[src]

Optional. A space separated list of filter terms matched against the contents of the issue. Contents include the title and the stack trace. Matches must begin at alphanumeric tokens, i.e., 'util.Sorted' matches 'java.util.SortedSet' but not 'myutil.SortedArray'. The filter matches if all filter terms match. All non-alphanumeric characters are ignored for matching. Filtering is assumed to be prefix-search and order-independent unless phrases are surrounded by "". Any terms contained in quotes are searched using exact-match (given filter term "foo", we will not return "foobar"), and must appear in the order given exactly. To get order-dependence but prefix-search, use a * within the quotes ("abc foo*" will match "abc foobar", but not "foo abc" "abcd foobar", or "abc xyz foobar").

§
[filter.issue.errorTypes]?: "ERROR_TYPE_UNSPECIFIED" | "FATAL" | "NON_FATAL" | "ANR"
[src]

Optional. Only counts events of the given error types. This field matches [Issue.error_type].

§
[filter.issue.id]?: string
[src]

Optional. Only counts events in the given issue ID. This field matches [Issue.id].

§
[filter.issue.signals]?: "SIGNAL_UNSPECIFIED" | "SIGNAL_EARLY" | "SIGNAL_FRESH" | "SIGNAL_REGRESSED" | "SIGNAL_REPETITIVE"
[src]

Optional. Only returns issues currently marked with the given signals. This field matches [Issue.signals.signal].

§
[filter.issue.state]?: "STATE_UNSPECIFIED" | "OPEN" | "CLOSED" | "MUTED"
[src]

Optional. Deprecated: Prefer states field. Only includes events for issues with the given issue state. Only available for topIssues reports.

§
[filter.issue.states]?: "STATE_UNSPECIFIED" | "OPEN" | "CLOSED" | "MUTED"
[src]

Optional. Only includes events for issues with the given issue states. Only available for topIssues reports.

§
[filter.issue.variantId]?: string
[src]

Optional. Only counts events for the given issue variant ID. This field matches [IssueVariant.id].

§
[filter.operatingSystem.displayNames]?: string
[src]

Only counts events in the given operating system and version. This string matches OperatingSystem.display_name. Format: "osName (osVersion)" e.g. "Android (11)". or just "osName" for all versions, e.g. simply "iPadOS".

§
[filter.version.displayNames]?: string
[src]

Only counts events in the given app version. This string matches Version.display_name. Format: "display_version (build_version)" e.g. "1.2.3 (456)".

§
pageSize?: number
[src]

Optional. The maximum number of events per page. If omitted, defaults to 10.

§
pageToken?: string
[src]

Optional. A page token, received from a previous calls.

§
readMask?: string
[src]

Optional. The list of Event fields to include in the response. If omitted, the full event is returned.