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

Usage

import * as mod from "https://googleapis.deno.dev/v1/playdeveloperreporting:v1beta1.ts";

§Classes

GoogleAuth
PlayDeveloperReporting

§Variables

auth

§Interfaces

AnomaliesListOptions

Additional options for PlayDeveloperReporting#anomaliesList.

AppsSearchOptions

Additional options for PlayDeveloperReporting#appsSearch.

CredentialsClient

Defines the root interface for all clients that generate credentials for calling Google APIs. All clients should implement this interface.

GooglePlayDeveloperReportingV1beta1Anomaly

Represents an anomaly detected in a dataset. Our anomaly detection systems flag datapoints in a time series that fall outside of and expected range derived from historical data. Although those expected ranges have an upper and a lower bound, we only flag anomalies when the data has become unexpectedly worse, which usually corresponds to the case where the metric crosses the upper bound. Multiple contiguous datapoints in a timeline outside of the expected range will be grouped into a single anomaly. Therefore, an anomaly represents effectively a segment of a metric's timeline. The information stored in the timeline_spec, dimensions and metric can be used to fetch a full timeline with extended ragne for context. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.

GooglePlayDeveloperReportingV1beta1AnrRateMetricSet

Singleton resource representing the set of ANR (Application not responding) metrics. This metric set contains ANRs data combined with usage data to produce a normalized metric independent of user counts. Supported aggregation periods: * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints, the only supported timezone is America/Los_Angeles. * HOURLY: metrics are aggregated in hourly intervals. The default and only supported timezone is UTC. Supported metrics: * anrRate (google.type.Decimal): Percentage of distinct users in the aggregation period that experienced at least one ANR. * anrRate7dUserWeighted (google.type.Decimal): Rolling average value of anrRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * anrRate28dUserWeighted (google.type.Decimal): Rolling average value of anrRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * userPerceivedAnrRate (google.type.Decimal): Percentage of distinct users in the aggregation period that experienced at least one user-perceived ANR. User-perceived ANRs are currently those of 'Input dispatching' type. * userPerceivedAnrRate7dUserWeighted (google.type.Decimal): Rolling average value of userPerceivedAnrRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * userPerceivedAnrRate28dUserWeighted (google.type.Decimal): Rolling average value of userPerceivedAnrRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. * distinctUsers (google.type.Decimal): Count of distinct users in the aggregation period that were used as normalization value for the anrRate and userPerceivedAnrRate metrics. A user is counted in this metric if they used the app in the foreground during the aggregation period. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceBrand (string): unique identifier of the user's device brand, e.g., google. * deviceType (string): the type (also known as form factor) of the user's device, e.g., PHONE. * countryCode (string): the country or region of the user's device based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US for the United States). * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference

  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app. Related metric sets: * vitals.errors contains unnormalized version (absolute counts) of crashes. * vitals.errors contains normalized metrics about crashes, another stability metric.
GooglePlayDeveloperReportingV1beta1App

A representation of an app in the Play Store.

GooglePlayDeveloperReportingV1beta1AppVersion

Representations of an app version.

GooglePlayDeveloperReportingV1beta1CrashRateMetricSet

Singleton resource representing the set of crashrate metrics. This metric set contains crashes data combined with usage data to produce a normalized metric independent of user counts. Supported aggregation periods: * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints, the only supported timezone is America/Los_Angeles. * HOURLY: metrics are aggregated in hourly intervals. The default and only supported timezone is UTC. Supported metrics: * crashRate (google.type.Decimal): Percentage of distinct users in the aggregation period that experienced at least one crash. * crashRate7dUserWeighted (google.type.Decimal): Rolling average value of crashRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * crashRate28dUserWeighted (google.type.Decimal): Rolling average value of crashRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * userPerceivedCrashRate (google.type.Decimal): Percentage of distinct users in the aggregation period that experienced at least one crash while they were actively using your app (a user-perceived crash). An app is considered to be in active use if it is displaying any activity or executing any foreground service. * userPerceivedCrashRate7dUserWeighted (google.type.Decimal): Rolling average value of userPerceivedCrashRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * userPerceivedCrashRate28dUserWeighted (google.type.Decimal): Rolling average value of userPerceivedCrashRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * distinctUsers (google.type.Decimal): Count of distinct users in the aggregation period that were used as normalization value for the crashRate and userPerceivedCrashRate metrics. A user is counted in this metric if they used the app actively during the aggregation period. An app is considered to be in active use if it is displaying any activity or executing any foreground service. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceBrand (string): unique identifier of the user's device brand, e.g., google. * deviceType (string): the type (also known as form factor) of the user's device, e.g., PHONE. * countryCode (string): the country or region of the user's device based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US for the United States). * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference

  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app. Related metric sets: * vitals.errors contains unnormalized version (absolute counts) of crashes. * vitals.errors contains normalized metrics about ANRs, another stability metric.
GooglePlayDeveloperReportingV1beta1DecimalConfidenceInterval

Represents the confidence interval of a metric.

GooglePlayDeveloperReportingV1beta1DeviceId

Identifier of a device.

GooglePlayDeveloperReportingV1beta1DeviceModelSummary

Summary of a device

GooglePlayDeveloperReportingV1beta1DimensionValue

Represents the value of a single dimension.

GooglePlayDeveloperReportingV1beta1ErrorCountMetricSet

Singleton resource representing the set of error report metrics. This metric set contains un-normalized error report counts. Supported aggregation periods: * HOURLY: metrics are aggregated in hourly intervals. The default and only supported timezone is UTC. * DAILY: metrics are aggregated in calendar date intervals. The default and only supported timezone is America/Los_Angeles. Supported metrics: * errorReportCount (google.type.Decimal): Absolute count of individual error reports that have been received for an app. * distinctUsers (google.type.Decimal): Count of distinct users for which reports have been received. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. This value is not rounded, however it may be an approximation. Required dimension: This dimension must be always specified in all requests in the dimensions field in query requests. * reportType (string): the type of error. The value should correspond to one of the possible values in ErrorType. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceType (string): identifier of the device's form factor, e.g., PHONE. * issueId (string): the id an error was assigned to. The value should correspond to the {issue} component of the issue name. * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference

  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app. Related metric sets: * vitals.errors.counts contains normalized metrics about Crashes, another stability metric. * vitals.errors.counts contains normalized metrics about ANRs, another stability metric.
GooglePlayDeveloperReportingV1beta1ErrorIssue

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.

GooglePlayDeveloperReportingV1beta1ErrorReport

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.

GooglePlayDeveloperReportingV1beta1ExcessiveWakeupRateMetricSet

Singleton resource representing the set of Excessive Weakeups metrics. This metric set contains AlarmManager wakeup counts data combined with process state data to produce a normalized metric independent of user counts. Supported aggregation periods: * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints, the only supported timezone is America/Los_Angeles. Supported metrics: * excessiveWakeupRate (google.type.Decimal): Percentage of distinct users in the aggregation period that had more than 10 wakeups per hour. * excessiveWakeupRate7dUserWeighted (google.type.Decimal): Rolling average value of excessiveWakeupRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. * excessiveWakeupRate28dUserWeighted (google.type.Decimal): Rolling average value of excessiveWakeupRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. * distinctUsers (google.type.Decimal): Count of distinct users in the aggregation period that were used as normalization value for the excessiveWakeupRate metric. A user is counted in this metric if they app was doing any work on the device, i.e., not just active foreground usage but also background work. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceBrand (string): unique identifier of the user's device brand, e.g., google. * deviceType (string): the type (also known as form factor) of the user's device, e.g., PHONE. * countryCode (string): the country or region of the user's device based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US for the United States). * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference

  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.
GooglePlayDeveloperReportingV1beta1FreshnessInfo

Represents the latest available time that can be requested in a TimelineSpec. Different aggregation periods have different freshness. For example, DAILY aggregation may lag behind HOURLY in cases where such aggregation is computed only once at the end of the day.

GooglePlayDeveloperReportingV1beta1FreshnessInfoFreshness

Information about data freshness for a single aggregation period.

GooglePlayDeveloperReportingV1beta1ListAnomaliesResponse

Response with a list of anomalies in datasets.

GooglePlayDeveloperReportingV1beta1MetricsRow

Represents a row of dimensions and metrics.

GooglePlayDeveloperReportingV1beta1MetricValue

Represents the value of a metric.

GooglePlayDeveloperReportingV1beta1OsVersion

Representation of an OS version.

GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetRequest

Request message for QueryAnrRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetResponse

Response message for QueryAnrRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetRequest

Request message for QueryCrashRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryCrashRateMetricSetResponse

Response message for QueryCrashRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryErrorCountMetricSetRequest

Request message for QueryErrorCountMetricSet.

GooglePlayDeveloperReportingV1beta1QueryErrorCountMetricSetResponse

Error counts query response.

GooglePlayDeveloperReportingV1beta1QueryExcessiveWakeupRateMetricSetRequest

Request message for QueryExcessiveWakeupRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryExcessiveWakeupRateMetricSetResponse

Response message for QueryExcessiveWakeupRateMetricSet.

GooglePlayDeveloperReportingV1beta1QuerySlowRenderingRateMetricSetRequest

Request message for QuerySlowRenderingRateMetricSet.

GooglePlayDeveloperReportingV1beta1QuerySlowRenderingRateMetricSetResponse

Response message for QuerySlowRenderingRateMetricSet.

GooglePlayDeveloperReportingV1beta1QuerySlowStartRateMetricSetRequest

Request message for QuerySlowStartRateMetricSet.

GooglePlayDeveloperReportingV1beta1QuerySlowStartRateMetricSetResponse

Response message for QuerySlowStartRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetRequest

Request message for QueryStuckBackgroundWakelockRateMetricSet.

GooglePlayDeveloperReportingV1beta1QueryStuckBackgroundWakelockRateMetricSetResponse

Response message for QueryStuckBackgroundWakelockRateMetricSet.

GooglePlayDeveloperReportingV1beta1Release

A representation of an app release.

GooglePlayDeveloperReportingV1beta1ReleaseFilterOptions

A set of filtering options for releases and version codes specific to an app.

GooglePlayDeveloperReportingV1beta1SearchAccessibleAppsResponse

Response message for SearchAccessibleApps.

GooglePlayDeveloperReportingV1beta1SearchErrorIssuesResponse

Response with a paginated list of issues that matched the request.

GooglePlayDeveloperReportingV1beta1SearchErrorReportsResponse

Response with a paginated list of error reports matching the search query.

GooglePlayDeveloperReportingV1beta1SlowRenderingRateMetricSet

Singleton resource representing the set of Slow Rendering metrics. This metric set contains low-level rendering data captured by SurafeFlinger. Sessions are evaluated based on the present-to-present histogram of frames handled by any SurfaceFlinger layer owned by the app. A slow session is a session where more than 25% of frames for the session did not meet the metric's target frame rate (either 20fps, or 30fps). NOTE: This metric set is only available for games. Supported aggregation periods: * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints, the only supported timezone is America/Los_Angeles. Supported metrics: * slowRenderingRate20Fps (google.type.Decimal): Percentage of distinct users in the aggregation period that had slow rendering. * slowRenderingRate20Fps7dUserWeighted (google.type.Decimal): Rolling average value of slowRenderingRate20Fps in the last 7 days. The daily values are weighted by the count of distinct users for the day. * slowRenderingRate20Fps28dUserWeighted (google.type.Decimal): Rolling average value of slowRenderingRate20Fps in the last 28 days. The daily values are weighted by the count of distinct users for the day. * slowRenderingRate30Fps (google.type.Decimal): Percentage of distinct users in the aggregation period that had slow rendering. * slowRenderingRate30Fps7dUserWeighted (google.type.Decimal): Rolling average value of slowRenderingRate30Fps in the last 7 days. The daily values are weighted by the count of distinct users for the day. * slowRenderingRate30Fps28dUserWeighted (google.type.Decimal): Rolling average value of slowRenderingRate30Fps in the last 28 days. The daily values are weighted by the count of distinct users for the day. * distinctUsers (google.type.Decimal): Count of distinct users in the aggregation period that were used as normalization value for the slowRenderingRate20Fps/slowRenderingRate30Fps metric. A user is counted in this metric if their app rendered any frames. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceBrand (string): unique identifier of the user's device brand, e.g., google. * deviceType (string): the type (also known as form factor) of the user's device, e.g., PHONE. * countryCode (string): the country or region of the user's device based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US for the United States). * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference

  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.
GooglePlayDeveloperReportingV1beta1SlowStartRateMetricSet

Singleton resource representing the set of Slow Start metrics. This metric set contains Activity start duration data. Supported aggregation periods:

  • DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints, the only supported timezone is America/Los_Angeles. Supported metrics: * slowStartRate (google.type.Decimal): Percentage of distinct users in the aggregation period that had a slow start. * slowStartRate7dUserWeighted (google.type.Decimal): Rolling average value of slowStartRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. * slowStartRate28dUserWeighted (google.type.Decimal): Rolling average value of slowStartRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. * distinctUsers (google.type.Decimal): Count of distinct users in the aggregation period that were used as normalization value for the slowStartRate metric. A user is counted in this metric if their app was launched in the device. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value. Required dimension: This dimension must be specified with each request for the request to be valid. * startType (string): the type of start that was measured. Valid types are HOT, WARM and COLD. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceBrand (string): unique identifier of the user's device brand, e.g., google. * deviceType (string): the type (also known as form factor) of the user's device, e.g., PHONE. * countryCode (string): the country or region of the user's device based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US for the United States). * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference
  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.
GooglePlayDeveloperReportingV1beta1StuckBackgroundWakelockRateMetricSet

Singleton resource representing the set of Stuck Background Wakelocks metrics. This metric set contains PowerManager wakelock duration data combined with process state data to produce a normalized metric independent of user counts. Supported aggregation periods: * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints, the only supported timezone is America/Los_Angeles. Supported metrics: * stuckBgWakelockRate (google.type.Decimal): Percentage of distinct users in the aggregation period that had a wakelock held in the background for longer than 1 hour. * stuckBgWakelockRate7dUserWeighted (google.type.Decimal): Rolling average value of stuckBgWakelockRate in the last 7 days. The daily values are weighted by the count of distinct users for the day. * stuckBgWakelockRate28dUserWeighted (google.type.Decimal): Rolling average value of stuckBgWakelockRate in the last 28 days. The daily values are weighted by the count of distinct users for the day. * distinctUsers (google.type.Decimal): Count of distinct users in the aggregation period that were used as normalization value for the stuckBgWakelockRate metric. A user is counted in this metric if their app was doing any work on the device, i.e., not just active foreground usage but also background work. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value. Supported dimensions: * apiLevel (string): the API level of Android that was running on the user's device, e.g., 26. * versionCode (int64): version of the app that was running on the user's device. * deviceModel (string): unique identifier of the user's device model. The form of the identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * deviceBrand (string): unique identifier of the user's device brand, e.g., google. * deviceType (string): the type (also known as form factor) of the user's device, e.g., PHONE. * countryCode (string): the country or region of the user's device based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US for the United States). * deviceRamBucket (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * deviceSocMake (string): Make of the device's primary system-on-chip, e.g., Samsung. Reference

  • deviceSocModel (string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". Reference
  • deviceCpuMake (string): Make of the device's CPU, e.g., Qualcomm. * deviceCpuModel (string): Model of the device's CPU, e.g., "Kryo 240". * deviceGpuMake (string): Make of the device's GPU, e.g., ARM. * deviceGpuModel (string): Model of the device's GPU, e.g., Mali. * deviceGpuVersion (string): Version of the device's GPU, e.g., T750. * deviceVulkanVersion (string): Vulkan version of the device, e.g., "4198400". * deviceGlEsVersion (string): OpenGL ES version of the device, e.g., "196610". * deviceScreenSize (string): Screen size of the device, e.g., NORMAL, LARGE. * deviceScreenDpi (string): Screen density of the device, e.g., mdpi, hdpi. Required permissions: to access this resource, the calling user needs the View app information (read-only) permission for the app.
GooglePlayDeveloperReportingV1beta1TimelineSpec

Specification of the time-related aggregation parameters of a timeline. Timelines have an aggregation period (DAILY, HOURLY, etc) which defines how events are aggregated in metrics. The points in a timeline are defined by the starting DateTime of the aggregation period. The duration is implicit in the AggregationPeriod. Hourly aggregation periods, when supported by a metric set, are always specified in UTC to avoid ambiguities around daylight saving time transitions, where an hour is skipped when adopting DST, and repeated when abandoning DST. For example, the timestamp '2021-11-07 01:00:00 America/Los_Angeles' is ambiguous since it can correspond to '2021-11-07 08:00:00 UTC' or '2021-11-07 09:00:00 UTC'. Daily aggregation periods require specifying a timezone which will determine the precise instants of the start and the end of the day. Not all metric sets support all timezones, so make sure to check which timezones are supported by the metric set you want to query.

GooglePlayDeveloperReportingV1beta1Track

A representation of a Play release track.

GoogleTypeDateTime

Represents civil time (or occasionally physical time). This type can represent a civil time in one of a few possible ways: * When utc_offset is set and time_zone is unset: a civil time on a calendar day with a particular offset from UTC. * When time_zone is set and utc_offset is unset: a civil time on a calendar day in a particular time zone. * When neither time_zone nor utc_offset is set: a civil time on a calendar day in local time. The date is relative to the Proleptic Gregorian Calendar. If year, month, or day are 0, the DateTime is considered not to have a specific year, month, or day respectively. This type may also be used to represent a physical time if all the date and time fields are set and either case of the time_offset oneof is set. Consider using Timestamp message for physical time instead. If your use case also would like to store the user's timezone, that can be done in another field. This type is more flexible than some applications may want. Make sure to document and validate your application's limitations.

GoogleTypeDecimal

A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java's BigDecimal or Python's decimal.Decimal. [BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html [decimal.Decimal]: https://docs.python.org/3/library/decimal.html

GoogleTypeTimeZone

Represents a time zone from the IANA Time Zone Database.

VitalsErrorsIssuesSearchOptions

Additional options for PlayDeveloperReporting#vitalsErrorsIssuesSearch.

VitalsErrorsReportsSearchOptions

Additional options for PlayDeveloperReporting#vitalsErrorsReportsSearch.