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

VitalsErrorsIssuesSearchOptions

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

Additional options for PlayDeveloperReporting#vitalsErrorsIssuesSearch.

interface VitalsErrorsIssuesSearchOptions {
filter?: string;
[interval.endTime.day]?: number;
[interval.endTime.hours]?: number;
[interval.endTime.minutes]?: number;
[interval.endTime.month]?: number;
[interval.endTime.nanos]?: number;
[interval.endTime.seconds]?: number;
[interval.endTime.timeZone.id]?: string;
[interval.endTime.timeZone.version]?: string;
[interval.endTime.utcOffset]?: number;
[interval.endTime.year]?: number;
[interval.startTime.day]?: number;
[interval.startTime.hours]?: number;
[interval.startTime.minutes]?: number;
[interval.startTime.month]?: number;
[interval.startTime.nanos]?: number;
[interval.startTime.seconds]?: number;
[interval.startTime.timeZone.id]?: string;
[interval.startTime.timeZone.version]?: string;
[interval.startTime.utcOffset]?: number;
[interval.startTime.year]?: number;
orderBy?: string;
pageSize?: number;
pageToken?: string;
sampleErrorReportLimit?: number;
}

§Properties

§
filter?: string
[src]

A selection predicate to retrieve only a subset of the issues. Counts in the returned error issues will only reflect occurrences that matched the filter. For filtering basics, please check AIP-160. ** Supported field names:** * apiLevel: Matches error issues that occurred in the requested Android versions (specified as the numeric API level) only. Example: apiLevel = 28 OR apiLevel = 29. * versionCode: Matches error issues that occurred in the requested app version codes only. Example: versionCode = 123 OR versionCode = 456. * deviceModel: Matches error issues that occurred in the requested devices. Example: deviceModel = "google/walleye" OR deviceModel = "google/marlin". * deviceBrand: Matches error issues that occurred in the requested device brands. Example: `deviceBrand = "Google".

  • deviceType: Matches error issues that occurred in the requested device types. Example: deviceType = "PHONE". * errorIssueType: Matches error issues of the requested types only. Valid candidates: CRASH, ANR. Example: errorIssueType = CRASH OR errorIssueType = ANR. * appProcessState: Matches error issues on the process state of an app, indicating whether an app runs in the foreground (user-visible) or background. Valid candidates: FOREGROUND, BACKGROUND. Example: appProcessState = FOREGROUND. * isUserPerceived: Matches error issues that are user-perceived. It is not accompanied by any operators. Example: isUserPerceived. ** Supported operators:** * Comparison operators: The only supported comparison operator is equality. The filtered field must appear on the left hand side of the comparison. * Logical Operators: Logical operators AND and OR can be used to build complex filters following a conjunctive normal form (CNF), i.e., conjunctions of disjunctions. The OR operator takes precedence over AND so the use of parenthesis is not necessary when building CNF. The OR operator is only supported to build disjunctions that apply to the same field, e.g., versionCode = 123 OR errorIssueType = ANR is not a valid filter. ** Examples ** Some valid filtering expressions: * versionCode = 123 AND errorIssueType = ANR * versionCode = 123 AND errorIssueType = OR errorIssueType = CRASH * versionCode = 123 AND (errorIssueType = OR errorIssueType = CRASH)
§
[interval.endTime.day]?: number
[src]

Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.

§
[interval.endTime.hours]?: number
[src]

Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.

§
[interval.endTime.minutes]?: number
[src]

Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.

§
[interval.endTime.month]?: number
[src]

Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.

§
[interval.endTime.nanos]?: number
[src]

Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.

§
[interval.endTime.seconds]?: number
[src]

Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.

§
[interval.endTime.timeZone.id]?: string
[src]

IANA Time Zone Database time zone, e.g. "America/New_York".

§
[interval.endTime.timeZone.version]?: string
[src]

Optional. IANA Time Zone Database version number, e.g. "2019a".

§
[interval.endTime.utcOffset]?: number
[src]

UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.

§
[interval.endTime.year]?: number
[src]

Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.

§
[interval.startTime.day]?: number
[src]

Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.

§
[interval.startTime.hours]?: number
[src]

Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.

§
[interval.startTime.minutes]?: number
[src]

Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.

§
[interval.startTime.month]?: number
[src]

Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.

§
[interval.startTime.nanos]?: number
[src]

Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.

§
[interval.startTime.seconds]?: number
[src]

Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.

§
[interval.startTime.timeZone.id]?: string
[src]

IANA Time Zone Database time zone, e.g. "America/New_York".

§
[interval.startTime.timeZone.version]?: string
[src]

Optional. IANA Time Zone Database version number, e.g. "2019a".

§
[interval.startTime.utcOffset]?: number
[src]

UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.

§
[interval.startTime.year]?: number
[src]

Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.

§
orderBy?: string
[src]

Specifies a field that will be used to order the results. ** Supported dimensions:** * errorReportCount: Orders issues by number of error reports. * distinctUsers: Orders issues by number of unique affected users. ** Supported operations:** * asc for ascending order. * desc for descending order. Format: A field and an operation, e.g., errorReportCount desc Note: currently only one field is supported at a time.

§
pageSize?: number
[src]

The maximum number of error issues to return. The service may return fewer than this value. If unspecified, at most 50 error issues will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.

§
pageToken?: string
[src]

A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that provided the page token.

§
sampleErrorReportLimit?: number
[src]

Optional. Number of sample error reports to return per ErrorIssue. If unspecified, 0 will be used. Note: currently only 0 and 1 are supported.