google-apis-playdeveloperreporting_v1beta1 0.16.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -119,20 +119,24 @@ module Google
119
119
  # counted multiple times. The value is rounded to the nearest multiple of 10,
120
120
  # 100, 1,000 or 1,000,000, depending on the magnitude of the value. **Supported
121
121
  # dimensions:** * `apiLevel` (string): the API level of Android that was running
122
- # on the user's device. * `versionCode` (int64): version of the app that was
123
- # running on the user's device. * `deviceModel` (string): unique identifier of
124
- # the user's device model. * `deviceType` (string): the type (also known as form
125
- # factor) of the user's device. * `countryCode` (string): the country or region
126
- # of the user's device based on their IP address, represented as a 2-letter ISO-
127
- # 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
128
- # the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
129
- # Make of the device's primary system-on-chip, e.g., Samsung. [Reference](https:/
130
- # /developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
131
- # deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
132
- # Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
133
- # Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
134
- # Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
135
- # 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
122
+ # on the user's device, e.g., 26. * `versionCode` (int64): version of the app
123
+ # that was running on the user's device. * `deviceModel` (string): unique
124
+ # identifier of the user's device model. The form of the identifier is '
125
+ # deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device
126
+ # corresponds to Build.DEVICE, e.g., google/coral. * `deviceBrand` (string):
127
+ # unique identifier of the user's device brand, e.g., google. * `deviceType` (
128
+ # string): the type (also known as form factor) of the user's device, e.g.,
129
+ # PHONE. * `countryCode` (string): the country or region of the user's device
130
+ # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
131
+ # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
132
+ # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
133
+ # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
134
+ # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
135
+ # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
136
+ # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
137
+ # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
138
+ # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
139
+ # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
136
140
  # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
137
141
  # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
138
142
  # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
@@ -171,6 +175,58 @@ module Google
171
175
  end
172
176
  end
173
177
 
178
+ # A representation of an app in the Play Store.
179
+ class GooglePlayDeveloperReportingV1beta1App
180
+ include Google::Apis::Core::Hashable
181
+
182
+ # Title of the app. This is the latest title as set in the Play Console and may
183
+ # not yet have been reviewed, so might not match the Play Store. Example: `
184
+ # Google Maps`.
185
+ # Corresponds to the JSON property `displayName`
186
+ # @return [String]
187
+ attr_accessor :display_name
188
+
189
+ # The resource name. Format: apps/`app`
190
+ # Corresponds to the JSON property `name`
191
+ # @return [String]
192
+ attr_accessor :name
193
+
194
+ # Package name of the app. Example: `com.example.app123`.
195
+ # Corresponds to the JSON property `packageName`
196
+ # @return [String]
197
+ attr_accessor :package_name
198
+
199
+ def initialize(**args)
200
+ update!(**args)
201
+ end
202
+
203
+ # Update properties of this object
204
+ def update!(**args)
205
+ @display_name = args[:display_name] if args.key?(:display_name)
206
+ @name = args[:name] if args.key?(:name)
207
+ @package_name = args[:package_name] if args.key?(:package_name)
208
+ end
209
+ end
210
+
211
+ # Representations of an app version.
212
+ class GooglePlayDeveloperReportingV1beta1AppVersion
213
+ include Google::Apis::Core::Hashable
214
+
215
+ # Numeric version code of the app version (set by the app's developer).
216
+ # Corresponds to the JSON property `versionCode`
217
+ # @return [Fixnum]
218
+ attr_accessor :version_code
219
+
220
+ def initialize(**args)
221
+ update!(**args)
222
+ end
223
+
224
+ # Update properties of this object
225
+ def update!(**args)
226
+ @version_code = args[:version_code] if args.key?(:version_code)
227
+ end
228
+ end
229
+
174
230
  # Singleton resource representing the set of crashrate metrics. This metric set
175
231
  # contains crashes data combined with usage data to produce a normalized metric
176
232
  # independent of user counts. **Supported aggregation periods:** * DAILY:
@@ -205,20 +261,24 @@ module Google
205
261
  # counted multiple times. The value is rounded to the nearest multiple of 10,
206
262
  # 100, 1,000 or 1,000,000, depending on the magnitude of the value. **Supported
207
263
  # dimensions:** * `apiLevel` (string): the API level of Android that was running
208
- # on the user's device. * `versionCode` (int64): version of the app that was
209
- # running on the user's device. * `deviceModel` (string): unique identifier of
210
- # the user's device model. * `deviceType` (string): the type (also known as form
211
- # factor) of the user's device. * `countryCode` (string): the country or region
212
- # of the user's device based on their IP address, represented as a 2-letter ISO-
213
- # 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
214
- # the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
215
- # Make of the device's primary system-on-chip, e.g., Samsung. [Reference](https:/
216
- # /developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
217
- # deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
218
- # Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
219
- # Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
220
- # Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
221
- # 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
264
+ # on the user's device, e.g., 26. * `versionCode` (int64): version of the app
265
+ # that was running on the user's device. * `deviceModel` (string): unique
266
+ # identifier of the user's device model. The form of the identifier is '
267
+ # deviceBrand/device', where deviceBrand corresponds to Build.BRAND and device
268
+ # corresponds to Build.DEVICE, e.g., google/coral. * `deviceBrand` (string):
269
+ # unique identifier of the user's device brand, e.g., google. * `deviceType` (
270
+ # string): the type (also known as form factor) of the user's device, e.g.,
271
+ # PHONE. * `countryCode` (string): the country or region of the user's device
272
+ # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
273
+ # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
274
+ # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
275
+ # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
276
+ # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
277
+ # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
278
+ # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
279
+ # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
280
+ # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
281
+ # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
222
282
  # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
223
283
  # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
224
284
  # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
@@ -290,6 +350,62 @@ module Google
290
350
  end
291
351
  end
292
352
 
353
+ # Identifier of a device.
354
+ class GooglePlayDeveloperReportingV1beta1DeviceId
355
+ include Google::Apis::Core::Hashable
356
+
357
+ # Value of Build.BRAND.
358
+ # Corresponds to the JSON property `buildBrand`
359
+ # @return [String]
360
+ attr_accessor :build_brand
361
+
362
+ # Value of Build.DEVICE.
363
+ # Corresponds to the JSON property `buildDevice`
364
+ # @return [String]
365
+ attr_accessor :build_device
366
+
367
+ def initialize(**args)
368
+ update!(**args)
369
+ end
370
+
371
+ # Update properties of this object
372
+ def update!(**args)
373
+ @build_brand = args[:build_brand] if args.key?(:build_brand)
374
+ @build_device = args[:build_device] if args.key?(:build_device)
375
+ end
376
+ end
377
+
378
+ # Summary of a device
379
+ class GooglePlayDeveloperReportingV1beta1DeviceModelSummary
380
+ include Google::Apis::Core::Hashable
381
+
382
+ # Identifier of a device.
383
+ # Corresponds to the JSON property `deviceId`
384
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1DeviceId]
385
+ attr_accessor :device_id
386
+
387
+ # Link to the device in Play Device Catalog.
388
+ # Corresponds to the JSON property `deviceUri`
389
+ # @return [String]
390
+ attr_accessor :device_uri
391
+
392
+ # Display name of the device.
393
+ # Corresponds to the JSON property `marketingName`
394
+ # @return [String]
395
+ attr_accessor :marketing_name
396
+
397
+ def initialize(**args)
398
+ update!(**args)
399
+ end
400
+
401
+ # Update properties of this object
402
+ def update!(**args)
403
+ @device_id = args[:device_id] if args.key?(:device_id)
404
+ @device_uri = args[:device_uri] if args.key?(:device_uri)
405
+ @marketing_name = args[:marketing_name] if args.key?(:marketing_name)
406
+ end
407
+ end
408
+
293
409
  # Represents the value of a single dimension.
294
410
  class GooglePlayDeveloperReportingV1beta1DimensionValue
295
411
  include Google::Apis::Core::Hashable
@@ -345,14 +461,16 @@ module Google
345
461
  # requests. * `reportType` (string): the type of error. The value should
346
462
  # correspond to one of the possible values in ErrorType. **Supported dimensions:*
347
463
  # * * `apiLevel` (string): the API level of Android that was running on the user'
348
- # s device. * `versionCode` (int64): version of the app that was running on the
349
- # user's device. * `deviceModel` (string): unique identifier of the user's
350
- # device model. * `deviceType` (string): identifier of the device's form factor,
351
- # e.g., PHONE. * `issueId` (string): the id an error was assigned to. The value
352
- # should correspond to the ``issue`` component of the issue name. * `
353
- # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
354
- # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
355
- # , Samsung. [Reference](https://developer.android.com/reference/android/os/
464
+ # s device, e.g., 26. * `versionCode` (int64): version of the app that was
465
+ # running on the user's device. * `deviceModel` (string): unique identifier of
466
+ # the user's device model. The form of the identifier is 'deviceBrand/device',
467
+ # where deviceBrand corresponds to Build.BRAND and device corresponds to Build.
468
+ # DEVICE, e.g., google/coral. * `deviceType` (string): identifier of the device'
469
+ # s form factor, e.g., PHONE. * `issueId` (string): the id an error was assigned
470
+ # to. The value should correspond to the ``issue`` component of the issue name. *
471
+ # `deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB,
472
+ # etc.). * `deviceSocMake` (string): Make of the device's primary system-on-chip,
473
+ # e.g., Samsung. [Reference](https://developer.android.com/reference/android/os/
356
474
  # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
357
475
  # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
358
476
  # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
@@ -416,6 +534,58 @@ module Google
416
534
  # @return [String]
417
535
  attr_accessor :cause
418
536
 
537
+ # An estimate of the number of unique users who have experienced this issue (
538
+ # only considering occurrences matching the filters and within the requested
539
+ # time period).
540
+ # Corresponds to the JSON property `distinctUsers`
541
+ # @return [Fixnum]
542
+ attr_accessor :distinct_users
543
+
544
+ # A representation of a decimal value, such as 2.5. Clients may convert values
545
+ # into language-native decimal formats, such as Java's BigDecimal or Python's
546
+ # decimal.Decimal. [BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/
547
+ # api/java.base/java/math/BigDecimal.html [decimal.Decimal]: https://docs.python.
548
+ # org/3/library/decimal.html
549
+ # Corresponds to the JSON property `distinctUsersPercent`
550
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GoogleTypeDecimal]
551
+ attr_accessor :distinct_users_percent
552
+
553
+ # The total number of error reports in this issue (only considering occurrences
554
+ # matching the filters and within the requested time period).
555
+ # Corresponds to the JSON property `errorReportCount`
556
+ # @return [Fixnum]
557
+ attr_accessor :error_report_count
558
+
559
+ # Representations of an app version.
560
+ # Corresponds to the JSON property `firstAppVersion`
561
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1AppVersion]
562
+ attr_accessor :first_app_version
563
+
564
+ # Representation of an OS version.
565
+ # Corresponds to the JSON property `firstOsVersion`
566
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1OsVersion]
567
+ attr_accessor :first_os_version
568
+
569
+ # Link to the issue in Android vitals in the Play Console.
570
+ # Corresponds to the JSON property `issueUri`
571
+ # @return [String]
572
+ attr_accessor :issue_uri
573
+
574
+ # Representations of an app version.
575
+ # Corresponds to the JSON property `lastAppVersion`
576
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1AppVersion]
577
+ attr_accessor :last_app_version
578
+
579
+ # Start of the hour during which the last error report in this issue occurred.
580
+ # Corresponds to the JSON property `lastErrorReportTime`
581
+ # @return [String]
582
+ attr_accessor :last_error_report_time
583
+
584
+ # Representation of an OS version.
585
+ # Corresponds to the JSON property `lastOsVersion`
586
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1OsVersion]
587
+ attr_accessor :last_os_version
588
+
419
589
  # Location where the issue happened. Depending on the type this can be either: *
420
590
  # APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped
421
591
  # responding. * CRASH: the likely method name that caused the error.
@@ -440,6 +610,15 @@ module Google
440
610
  # Update properties of this object
441
611
  def update!(**args)
442
612
  @cause = args[:cause] if args.key?(:cause)
613
+ @distinct_users = args[:distinct_users] if args.key?(:distinct_users)
614
+ @distinct_users_percent = args[:distinct_users_percent] if args.key?(:distinct_users_percent)
615
+ @error_report_count = args[:error_report_count] if args.key?(:error_report_count)
616
+ @first_app_version = args[:first_app_version] if args.key?(:first_app_version)
617
+ @first_os_version = args[:first_os_version] if args.key?(:first_os_version)
618
+ @issue_uri = args[:issue_uri] if args.key?(:issue_uri)
619
+ @last_app_version = args[:last_app_version] if args.key?(:last_app_version)
620
+ @last_error_report_time = args[:last_error_report_time] if args.key?(:last_error_report_time)
621
+ @last_os_version = args[:last_os_version] if args.key?(:last_os_version)
443
622
  @location = args[:location] if args.key?(:location)
444
623
  @name = args[:name] if args.key?(:name)
445
624
  @type = args[:type] if args.key?(:type)
@@ -455,6 +634,16 @@ module Google
455
634
  class GooglePlayDeveloperReportingV1beta1ErrorReport
456
635
  include Google::Apis::Core::Hashable
457
636
 
637
+ # Summary of a device
638
+ # Corresponds to the JSON property `deviceModel`
639
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1DeviceModelSummary]
640
+ attr_accessor :device_model
641
+
642
+ # Start of the hour during which the latest event in this error report occurred.
643
+ # Corresponds to the JSON property `eventTime`
644
+ # @return [String]
645
+ attr_accessor :event_time
646
+
458
647
  # The issue this report was associated with. **Please note:** this resource is
459
648
  # currently in Alpha. There could be changes to the issue grouping that would
460
649
  # result in similar but more recent error reports being assigned to a different
@@ -468,6 +657,11 @@ module Google
468
657
  # @return [String]
469
658
  attr_accessor :name
470
659
 
660
+ # Representation of an OS version.
661
+ # Corresponds to the JSON property `osVersion`
662
+ # @return [Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1OsVersion]
663
+ attr_accessor :os_version
664
+
471
665
  # Textual representation of the error report. These textual reports are produced
472
666
  # by the platform. The reports are then sanitized and filtered to remove any
473
667
  # potentially sensitive information. Although their format is fairly stable,
@@ -489,8 +683,11 @@ module Google
489
683
 
490
684
  # Update properties of this object
491
685
  def update!(**args)
686
+ @device_model = args[:device_model] if args.key?(:device_model)
687
+ @event_time = args[:event_time] if args.key?(:event_time)
492
688
  @issue = args[:issue] if args.key?(:issue)
493
689
  @name = args[:name] if args.key?(:name)
690
+ @os_version = args[:os_version] if args.key?(:os_version)
494
691
  @report_text = args[:report_text] if args.key?(:report_text)
495
692
  @type = args[:type] if args.key?(:type)
496
693
  end
@@ -517,28 +714,32 @@ module Google
517
714
  # may result in users being counted multiple times. The value is rounded to the
518
715
  # nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of
519
716
  # the value. **Supported dimensions:** * `apiLevel` (string): the API level of
520
- # Android that was running on the user's device. * `versionCode` (int64):
521
- # version of the app that was running on the user's device. * `deviceModel` (
522
- # string): unique identifier of the user's device model. * `deviceType` (string):
523
- # the type (also known as form factor) of the user's device. * `countryCode` (
524
- # string): the country or region of the user's device based on their IP address,
525
- # represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
526
- # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
527
- # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
528
- # , Samsung. [Reference](https://developer.android.com/reference/android/os/
529
- # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
530
- # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
531
- # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
532
- # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
533
- # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
534
- # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
535
- # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
536
- # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
537
- # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
538
- # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
539
- # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
540
- # , mdpi, hdpi. **Required permissions**: to access this resource, the calling
541
- # user needs the _View app information (read-only)_ permission for the app.
717
+ # Android that was running on the user's device, e.g., 26. * `versionCode` (
718
+ # int64): version of the app that was running on the user's device. * `
719
+ # deviceModel` (string): unique identifier of the user's device model. The form
720
+ # of the identifier is 'deviceBrand/device', where deviceBrand corresponds to
721
+ # Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
722
+ # deviceBrand` (string): unique identifier of the user's device brand, e.g.,
723
+ # google. * `deviceType` (string): the type (also known as form factor) of the
724
+ # user's device, e.g., PHONE. * `countryCode` (string): the country or region of
725
+ # the user's device based on their IP address, represented as a 2-letter ISO-
726
+ # 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
727
+ # the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
728
+ # Make of the device's primary system-on-chip, e.g., Samsung. [Reference](https:/
729
+ # /developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
730
+ # deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
731
+ # Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
732
+ # Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
733
+ # Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
734
+ # 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
735
+ # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
736
+ # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
737
+ # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
738
+ # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
739
+ # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
740
+ # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
741
+ # **Required permissions**: to access this resource, the calling user needs the
742
+ # _View app information (read-only)_ permission for the app.
542
743
  class GooglePlayDeveloperReportingV1beta1ExcessiveWakeupRateMetricSet
543
744
  include Google::Apis::Core::Hashable
544
745
 
@@ -737,32 +938,55 @@ module Google
737
938
  end
738
939
  end
739
940
 
941
+ # Representation of an OS version.
942
+ class GooglePlayDeveloperReportingV1beta1OsVersion
943
+ include Google::Apis::Core::Hashable
944
+
945
+ # Numeric version code of the OS - API level
946
+ # Corresponds to the JSON property `apiLevel`
947
+ # @return [Fixnum]
948
+ attr_accessor :api_level
949
+
950
+ def initialize(**args)
951
+ update!(**args)
952
+ end
953
+
954
+ # Update properties of this object
955
+ def update!(**args)
956
+ @api_level = args[:api_level] if args.key?(:api_level)
957
+ end
958
+ end
959
+
740
960
  # Request message for QueryAnrRateMetricSet.
741
961
  class GooglePlayDeveloperReportingV1beta1QueryAnrRateMetricSetRequest
742
962
  include Google::Apis::Core::Hashable
743
963
 
744
964
  # Dimensions to slice the metrics by. **Supported dimensions:** * `apiLevel` (
745
- # string): the API level of Android that was running on the user's device. * `
746
- # versionCode` (int64): version of the app that was running on the user's device.
747
- # * `deviceModel` (string): unique identifier of the user's device model. * `
748
- # deviceType` (string): the type (also known as form factor) of the user's
749
- # device. * `countryCode` (string): the country or region of the user's device
750
- # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
751
- # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
752
- # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
753
- # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
754
- # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
755
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
756
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
757
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
758
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
759
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
760
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
761
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
762
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
763
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
764
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
765
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
965
+ # string): the API level of Android that was running on the user's device, e.g.,
966
+ # 26. * `versionCode` (int64): version of the app that was running on the user's
967
+ # device. * `deviceModel` (string): unique identifier of the user's device model.
968
+ # The form of the identifier is 'deviceBrand/device', where deviceBrand
969
+ # corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
970
+ # google/coral. * `deviceBrand` (string): unique identifier of the user's device
971
+ # brand, e.g., google. * `deviceType` (string): the type (also known as form
972
+ # factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
973
+ # country or region of the user's device based on their IP address, represented
974
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
975
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
976
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
977
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
978
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
979
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
980
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
981
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
982
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
983
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
984
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
985
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
986
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
987
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
988
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
989
+ # , mdpi, hdpi.
766
990
  # Corresponds to the JSON property `dimensions`
767
991
  # @return [Array<String>]
768
992
  attr_accessor :dimensions
@@ -893,27 +1117,31 @@ module Google
893
1117
  include Google::Apis::Core::Hashable
894
1118
 
895
1119
  # Dimensions to slice the metrics by. **Supported dimensions:** * `apiLevel` (
896
- # string): the API level of Android that was running on the user's device. * `
897
- # versionCode` (int64): version of the app that was running on the user's device.
898
- # * `deviceModel` (string): unique identifier of the user's device model. * `
899
- # deviceType` (string): the type (also known as form factor) of the user's
900
- # device. * `countryCode` (string): the country or region of the user's device
901
- # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
902
- # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
903
- # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
904
- # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
905
- # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
906
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
907
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
908
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
909
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
910
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
911
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
912
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
913
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
914
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
915
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
916
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1120
+ # string): the API level of Android that was running on the user's device, e.g.,
1121
+ # 26. * `versionCode` (int64): version of the app that was running on the user's
1122
+ # device. * `deviceModel` (string): unique identifier of the user's device model.
1123
+ # The form of the identifier is 'deviceBrand/device', where deviceBrand
1124
+ # corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
1125
+ # google/coral. * `deviceBrand` (string): unique identifier of the user's device
1126
+ # brand, e.g., google. * `deviceType` (string): the type (also known as form
1127
+ # factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
1128
+ # country or region of the user's device based on their IP address, represented
1129
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1130
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1131
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1132
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1133
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1134
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1135
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1136
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1137
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1138
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1139
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1140
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1141
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1142
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1143
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1144
+ # , mdpi, hdpi.
917
1145
  # Corresponds to the JSON property `dimensions`
918
1146
  # @return [Array<String>]
919
1147
  attr_accessor :dimensions
@@ -1046,24 +1274,27 @@ module Google
1046
1274
  include Google::Apis::Core::Hashable
1047
1275
 
1048
1276
  # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1049
- # string): the API level of Android that was running on the user's device. * `
1050
- # versionCode` (int64): version of the app that was running on the user's device.
1051
- # * `deviceModel` (string): unique identifier of the user's device model. * `
1277
+ # string): the API level of Android that was running on the user's device, e.g.,
1278
+ # 26. * `versionCode` (int64): unique identifier of the user's device model. The
1279
+ # form of the identifier is 'deviceBrand/device', where deviceBrand corresponds
1280
+ # to Build.BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
1281
+ # deviceModel` (string): unique identifier of the user's device model. * `
1052
1282
  # deviceType` (string): identifier of the device's form factor, e.g., PHONE. * `
1053
1283
  # reportType` (string): the type of error. The value should correspond to one of
1054
- # the possible values in ErrorType. * `issueId` (string): the id an error was
1055
- # assigned to. The value should correspond to the ``issue`` component of the
1056
- # issue name. * `deviceRamBucket` (int64): RAM of the device, in MB, in buckets (
1057
- # 3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's primary
1058
- # system-on-chip, e.g., Samsung. [Reference](https://developer.android.com/
1059
- # reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1060
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1061
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1062
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1063
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1064
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1065
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1066
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1284
+ # the possible values in ErrorType. * `isUserPerceived` (string): denotes
1285
+ # whether error is user perceived or not, USER_PERCEIVED or NOT_USER_PERCEIVED. *
1286
+ # `issueId` (string): the id an error was assigned to. The value should
1287
+ # correspond to the ``issue`` component of the issue name. * `deviceRamBucket` (
1288
+ # int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.). * `
1289
+ # deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.,
1290
+ # Samsung. [Reference](https://developer.android.com/reference/android/os/Build#
1291
+ # SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's primary
1292
+ # system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.android.com/
1293
+ # reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the
1294
+ # device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model of the device'
1295
+ # s CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the device's GPU,
1296
+ # e.g., ARM. * `deviceGpuModel` (string): Model of the device's GPU, e.g., Mali.
1297
+ # * `deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1067
1298
  # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1068
1299
  # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1069
1300
  # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
@@ -1165,27 +1396,31 @@ module Google
1165
1396
  include Google::Apis::Core::Hashable
1166
1397
 
1167
1398
  # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1168
- # string): the API level of Android that was running on the user's device. * `
1169
- # versionCode` (int64): version of the app that was running on the user's device.
1170
- # * `deviceModel` (string): unique identifier of the user's device model. * `
1171
- # deviceType` (string): the type (also known as form factor) of the user's
1172
- # device. * `countryCode` (string): the country or region of the user's device
1173
- # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1174
- # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1175
- # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1176
- # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1177
- # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1178
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1179
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1180
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1181
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1182
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1183
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1184
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1185
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1186
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1187
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1188
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1399
+ # string): the API level of Android that was running on the user's device, e.g.,
1400
+ # 26. * `versionCode` (int64): version of the app that was running on the user's
1401
+ # device. * `deviceModel` (string): unique identifier of the user's device model.
1402
+ # The form of the identifier is 'deviceBrand/device', where deviceBrand
1403
+ # corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
1404
+ # google/coral. * `deviceBrand` (string): unique identifier of the user's device
1405
+ # brand, e.g., google. * `deviceType` (string): the type (also known as form
1406
+ # factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
1407
+ # country or region of the user's device based on their IP address, represented
1408
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1409
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1410
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1411
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1412
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1413
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1414
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1415
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1416
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1417
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1418
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1419
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1420
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1421
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1422
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1423
+ # , mdpi, hdpi.
1189
1424
  # Corresponds to the JSON property `dimensions`
1190
1425
  # @return [Array<String>]
1191
1426
  attr_accessor :dimensions
@@ -1307,27 +1542,31 @@ module Google
1307
1542
  include Google::Apis::Core::Hashable
1308
1543
 
1309
1544
  # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1310
- # string): the API level of Android that was running on the user's device. * `
1311
- # versionCode` (int64): version of the app that was running on the user's device.
1312
- # * `deviceModel` (string): unique identifier of the user's device model. * `
1313
- # deviceType` (string): the type (also known as form factor) of the user's
1314
- # device. * `countryCode` (string): the country or region of the user's device
1315
- # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1316
- # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1317
- # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1318
- # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1319
- # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1320
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1321
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1322
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1323
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1324
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1325
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1326
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1327
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1328
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1329
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1330
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1545
+ # string): the API level of Android that was running on the user's device, e.g.,
1546
+ # 26. * `versionCode` (int64): version of the app that was running on the user's
1547
+ # device. * `deviceModel` (string): unique identifier of the user's device model.
1548
+ # The form of the identifier is 'deviceBrand/device', where deviceBrand
1549
+ # corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
1550
+ # google/coral. * `deviceBrand` (string): unique identifier of the user's device
1551
+ # brand, e.g., google. * `deviceType` (string): the type (also known as form
1552
+ # factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
1553
+ # country or region of the user's device based on their IP address, represented
1554
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1555
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1556
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1557
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1558
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1559
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1560
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1561
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1562
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1563
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1564
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1565
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1566
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1567
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1568
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1569
+ # , mdpi, hdpi.
1331
1570
  # Corresponds to the JSON property `dimensions`
1332
1571
  # @return [Array<String>]
1333
1572
  attr_accessor :dimensions
@@ -1456,27 +1695,31 @@ module Google
1456
1695
  include Google::Apis::Core::Hashable
1457
1696
 
1458
1697
  # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1459
- # string): the API level of Android that was running on the user's device. * `
1460
- # versionCode` (int64): version of the app that was running on the user's device.
1461
- # * `deviceModel` (string): unique identifier of the user's device model. * `
1462
- # deviceType` (string): the type (also known as form factor) of the user's
1463
- # device. * `countryCode` (string): the country or region of the user's device
1464
- # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1465
- # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1466
- # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1467
- # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1468
- # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1469
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1470
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1471
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1472
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1473
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1474
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1475
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1476
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1477
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1478
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1479
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1698
+ # string): the API level of Android that was running on the user's device, e.g.,
1699
+ # 26. * `versionCode` (int64): version of the app that was running on the user's
1700
+ # device. * `deviceModel` (string): unique identifier of the user's device model.
1701
+ # The form of the identifier is 'deviceBrand/device', where deviceBrand
1702
+ # corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
1703
+ # google/coral. * `deviceBrand` (string): unique identifier of the user's device
1704
+ # brand, e.g., google. * `deviceType` (string): the type (also known as form
1705
+ # factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
1706
+ # country or region of the user's device based on their IP address, represented
1707
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1708
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1709
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1710
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1711
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1712
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1713
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1714
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1715
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1716
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1717
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1718
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1719
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1720
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1721
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1722
+ # , mdpi, hdpi.
1480
1723
  # Corresponds to the JSON property `dimensions`
1481
1724
  # @return [Array<String>]
1482
1725
  attr_accessor :dimensions
@@ -1596,27 +1839,31 @@ module Google
1596
1839
  include Google::Apis::Core::Hashable
1597
1840
 
1598
1841
  # Dimensions to slice the data by. **Supported dimensions:** * `apiLevel` (
1599
- # string): the API level of Android that was running on the user's device. * `
1600
- # versionCode` (int64): version of the app that was running on the user's device.
1601
- # * `deviceModel` (string): unique identifier of the user's device model. * `
1602
- # deviceType` (string): the type (also known as form factor) of the user's
1603
- # device. * `countryCode` (string): the country or region of the user's device
1604
- # based on their IP address, represented as a 2-letter ISO-3166 code (e.g. US
1605
- # for the United States). * `deviceRamBucket` (int64): RAM of the device, in MB,
1606
- # in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the device's
1607
- # primary system-on-chip, e.g., Samsung. [Reference](https://developer.android.
1608
- # com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (string):
1609
- # Model of the device's primary system-on-chip, e.g., "Exynos 2100". [Reference](
1610
- # https://developer.android.com/reference/android/os/Build#SOC_MODEL) * `
1611
- # deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1612
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1613
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1614
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1615
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1616
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1617
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1618
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1619
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1842
+ # string): the API level of Android that was running on the user's device, e.g.,
1843
+ # 26. * `versionCode` (int64): version of the app that was running on the user's
1844
+ # device. * `deviceModel` (string): unique identifier of the user's device model.
1845
+ # The form of the identifier is 'deviceBrand/device', where deviceBrand
1846
+ # corresponds to Build.BRAND and device corresponds to Build.DEVICE, e.g.,
1847
+ # google/coral. * `deviceBrand` (string): unique identifier of the user's device
1848
+ # brand, e.g., google. * `deviceType` (string): the type (also known as form
1849
+ # factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
1850
+ # country or region of the user's device based on their IP address, represented
1851
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1852
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1853
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1854
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1855
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1856
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1857
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1858
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1859
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1860
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1861
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1862
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1863
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1864
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1865
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1866
+ # , mdpi, hdpi.
1620
1867
  # Corresponds to the JSON property `dimensions`
1621
1868
  # @return [Array<String>]
1622
1869
  attr_accessor :dimensions
@@ -1733,6 +1980,77 @@ module Google
1733
1980
  end
1734
1981
  end
1735
1982
 
1983
+ # A representation of an app release.
1984
+ class GooglePlayDeveloperReportingV1beta1Release
1985
+ include Google::Apis::Core::Hashable
1986
+
1987
+ # Readable identifier of the release.
1988
+ # Corresponds to the JSON property `displayName`
1989
+ # @return [String]
1990
+ attr_accessor :display_name
1991
+
1992
+ # The version codes contained in this release.
1993
+ # Corresponds to the JSON property `versionCodes`
1994
+ # @return [Array<Fixnum>]
1995
+ attr_accessor :version_codes
1996
+
1997
+ def initialize(**args)
1998
+ update!(**args)
1999
+ end
2000
+
2001
+ # Update properties of this object
2002
+ def update!(**args)
2003
+ @display_name = args[:display_name] if args.key?(:display_name)
2004
+ @version_codes = args[:version_codes] if args.key?(:version_codes)
2005
+ end
2006
+ end
2007
+
2008
+ # A set of filtering options for releases and version codes specific to an app.
2009
+ class GooglePlayDeveloperReportingV1beta1ReleaseFilterOptions
2010
+ include Google::Apis::Core::Hashable
2011
+
2012
+ # List of tracks to filter releases over. Provides the grouping of version codes
2013
+ # under releases and tracks.
2014
+ # Corresponds to the JSON property `tracks`
2015
+ # @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1Track>]
2016
+ attr_accessor :tracks
2017
+
2018
+ def initialize(**args)
2019
+ update!(**args)
2020
+ end
2021
+
2022
+ # Update properties of this object
2023
+ def update!(**args)
2024
+ @tracks = args[:tracks] if args.key?(:tracks)
2025
+ end
2026
+ end
2027
+
2028
+ # Response message for SearchAccessibleApps.
2029
+ class GooglePlayDeveloperReportingV1beta1SearchAccessibleAppsResponse
2030
+ include Google::Apis::Core::Hashable
2031
+
2032
+ # The apps accessible to the user calling the endpoint.
2033
+ # Corresponds to the JSON property `apps`
2034
+ # @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1App>]
2035
+ attr_accessor :apps
2036
+
2037
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
2038
+ # field is omitted, there are no subsequent pages.
2039
+ # Corresponds to the JSON property `nextPageToken`
2040
+ # @return [String]
2041
+ attr_accessor :next_page_token
2042
+
2043
+ def initialize(**args)
2044
+ update!(**args)
2045
+ end
2046
+
2047
+ # Update properties of this object
2048
+ def update!(**args)
2049
+ @apps = args[:apps] if args.key?(:apps)
2050
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2051
+ end
2052
+ end
2053
+
1736
2054
  # Response with a paginated list of issues that matched the request.
1737
2055
  class GooglePlayDeveloperReportingV1beta1SearchErrorIssuesResponse
1738
2056
  include Google::Apis::Core::Hashable
@@ -1815,28 +2133,31 @@ module Google
1815
2133
  # times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,
1816
2134
  # 000, depending on the magnitude of the value. **Supported dimensions:** * `
1817
2135
  # apiLevel` (string): the API level of Android that was running on the user's
1818
- # device. * `versionCode` (int64): version of the app that was running on the
1819
- # user's device. * `deviceModel` (string): unique identifier of the user's
1820
- # device model. * `deviceType` (string): the type (also known as form factor) of
1821
- # the user's device. * `countryCode` (string): the country or region of the user'
1822
- # s device based on their IP address, represented as a 2-letter ISO-3166 code (e.
1823
- # g. US for the United States). * `deviceRamBucket` (int64): RAM of the device,
1824
- # in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the
1825
- # device's primary system-on-chip, e.g., Samsung. [Reference](https://developer.
1826
- # android.com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (
1827
- # string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". [
1828
- # Reference](https://developer.android.com/reference/android/os/Build#SOC_MODEL)
1829
- # * `deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1830
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1831
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1832
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1833
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1834
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1835
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1836
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1837
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1838
- # **Required permissions**: to access this resource, the calling user needs the
1839
- # _View app information (read-only)_ permission for the app.
2136
+ # device, e.g., 26. * `versionCode` (int64): version of the app that was running
2137
+ # on the user's device. * `deviceModel` (string): unique identifier of the user'
2138
+ # s device model. The form of the identifier is 'deviceBrand/device', where
2139
+ # deviceBrand corresponds to Build.BRAND and device corresponds to Build.DEVICE,
2140
+ # e.g., google/coral. * `deviceBrand` (string): unique identifier of the user's
2141
+ # device brand, e.g., google. * `deviceType` (string): the type (also known as
2142
+ # form factor) of the user's device, e.g., PHONE. * `countryCode` (string): the
2143
+ # country or region of the user's device based on their IP address, represented
2144
+ # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
2145
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
2146
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
2147
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
2148
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
2149
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
2150
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
2151
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
2152
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
2153
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
2154
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
2155
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
2156
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
2157
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
2158
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
2159
+ # , mdpi, hdpi. **Required permissions**: to access this resource, the calling
2160
+ # user needs the _View app information (read-only)_ permission for the app.
1840
2161
  class GooglePlayDeveloperReportingV1beta1SlowRenderingRateMetricSet
1841
2162
  include Google::Apis::Core::Hashable
1842
2163
 
@@ -1885,28 +2206,32 @@ module Google
1885
2206
  # specified with each request for the request to be valid. * `startType` (string)
1886
2207
  # : the type of start that was measured. Valid types are `HOT`, `WARM` and `COLD`
1887
2208
  # . **Supported dimensions:** * `apiLevel` (string): the API level of Android
1888
- # that was running on the user's device. * `versionCode` (int64): version of the
1889
- # app that was running on the user's device. * `deviceModel` (string): unique
1890
- # identifier of the user's device model. * `deviceType` (string): the type (also
1891
- # known as form factor) of the user's device. * `countryCode` (string): the
1892
- # country or region of the user's device based on their IP address, represented
1893
- # as a 2-letter ISO-3166 code (e.g. US for the United States). * `
1894
- # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
1895
- # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
1896
- # , Samsung. [Reference](https://developer.android.com/reference/android/os/
1897
- # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
1898
- # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
1899
- # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
1900
- # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
1901
- # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
1902
- # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
1903
- # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
1904
- # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
1905
- # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
1906
- # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
1907
- # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
1908
- # , mdpi, hdpi. **Required permissions**: to access this resource, the calling
1909
- # user needs the _View app information (read-only)_ permission for the app.
2209
+ # that was running on the user's device, e.g., 26. * `versionCode` (int64):
2210
+ # version of the app that was running on the user's device. * `deviceModel` (
2211
+ # string): unique identifier of the user's device model. The form of the
2212
+ # identifier is 'deviceBrand/device', where deviceBrand corresponds to Build.
2213
+ # BRAND and device corresponds to Build.DEVICE, e.g., google/coral. * `
2214
+ # deviceBrand` (string): unique identifier of the user's device brand, e.g.,
2215
+ # google. * `deviceType` (string): the type (also known as form factor) of the
2216
+ # user's device, e.g., PHONE. * `countryCode` (string): the country or region of
2217
+ # the user's device based on their IP address, represented as a 2-letter ISO-
2218
+ # 3166 code (e.g. US for the United States). * `deviceRamBucket` (int64): RAM of
2219
+ # the device, in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string):
2220
+ # Make of the device's primary system-on-chip, e.g., Samsung. [Reference](https:/
2221
+ # /developer.android.com/reference/android/os/Build#SOC_MANUFACTURER) * `
2222
+ # deviceSocModel` (string): Model of the device's primary system-on-chip, e.g., "
2223
+ # Exynos 2100". [Reference](https://developer.android.com/reference/android/os/
2224
+ # Build#SOC_MODEL) * `deviceCpuMake` (string): Make of the device's CPU, e.g.,
2225
+ # Qualcomm. * `deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo
2226
+ # 240". * `deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
2227
+ # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
2228
+ # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
2229
+ # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
2230
+ # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
2231
+ # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
2232
+ # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
2233
+ # **Required permissions**: to access this resource, the calling user needs the
2234
+ # _View app information (read-only)_ permission for the app.
1910
2235
  class GooglePlayDeveloperReportingV1beta1SlowStartRateMetricSet
1911
2236
  include Google::Apis::Core::Hashable
1912
2237
 
@@ -1956,28 +2281,31 @@ module Google
1956
2281
  # multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000
1957
2282
  # or 1,000,000, depending on the magnitude of the value. **Supported dimensions:*
1958
2283
  # * * `apiLevel` (string): the API level of Android that was running on the user'
1959
- # s device. * `versionCode` (int64): version of the app that was running on the
1960
- # user's device. * `deviceModel` (string): unique identifier of the user's
1961
- # device model. * `deviceType` (string): the type (also known as form factor) of
1962
- # the user's device. * `countryCode` (string): the country or region of the user'
1963
- # s device based on their IP address, represented as a 2-letter ISO-3166 code (e.
1964
- # g. US for the United States). * `deviceRamBucket` (int64): RAM of the device,
1965
- # in MB, in buckets (3GB, 4GB, etc.). * `deviceSocMake` (string): Make of the
1966
- # device's primary system-on-chip, e.g., Samsung. [Reference](https://developer.
1967
- # android.com/reference/android/os/Build#SOC_MANUFACTURER) * `deviceSocModel` (
1968
- # string): Model of the device's primary system-on-chip, e.g., "Exynos 2100". [
1969
- # Reference](https://developer.android.com/reference/android/os/Build#SOC_MODEL)
1970
- # * `deviceCpuMake` (string): Make of the device's CPU, e.g., Qualcomm. * `
1971
- # deviceCpuModel` (string): Model of the device's CPU, e.g., "Kryo 240". * `
1972
- # deviceGpuMake` (string): Make of the device's GPU, e.g., ARM. * `
1973
- # deviceGpuModel` (string): Model of the device's GPU, e.g., Mali. * `
1974
- # deviceGpuVersion` (string): Version of the device's GPU, e.g., T750. * `
1975
- # deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". *
1976
- # `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610".
1977
- # * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE.
1978
- # * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
1979
- # **Required permissions**: to access this resource, the calling user needs the
1980
- # _View app information (read-only)_ permission for the app.
2284
+ # s device, e.g., 26. * `versionCode` (int64): version of the app that was
2285
+ # running on the user's device. * `deviceModel` (string): unique identifier of
2286
+ # the user's device model. The form of the identifier is 'deviceBrand/device',
2287
+ # where deviceBrand corresponds to Build.BRAND and device corresponds to Build.
2288
+ # DEVICE, e.g., google/coral. * `deviceBrand` (string): unique identifier of the
2289
+ # user's device brand, e.g., google. * `deviceType` (string): the type (also
2290
+ # known as form factor) of the user's device, e.g., PHONE. * `countryCode` (
2291
+ # string): the country or region of the user's device based on their IP address,
2292
+ # represented as a 2-letter ISO-3166 code (e.g. US for the United States). * `
2293
+ # deviceRamBucket` (int64): RAM of the device, in MB, in buckets (3GB, 4GB, etc.)
2294
+ # . * `deviceSocMake` (string): Make of the device's primary system-on-chip, e.g.
2295
+ # , Samsung. [Reference](https://developer.android.com/reference/android/os/
2296
+ # Build#SOC_MANUFACTURER) * `deviceSocModel` (string): Model of the device's
2297
+ # primary system-on-chip, e.g., "Exynos 2100". [Reference](https://developer.
2298
+ # android.com/reference/android/os/Build#SOC_MODEL) * `deviceCpuMake` (string):
2299
+ # Make of the device's CPU, e.g., Qualcomm. * `deviceCpuModel` (string): Model
2300
+ # of the device's CPU, e.g., "Kryo 240". * `deviceGpuMake` (string): Make of the
2301
+ # device's GPU, e.g., ARM. * `deviceGpuModel` (string): Model of the device's
2302
+ # GPU, e.g., Mali. * `deviceGpuVersion` (string): Version of the device's GPU, e.
2303
+ # g., T750. * `deviceVulkanVersion` (string): Vulkan version of the device, e.g.,
2304
+ # "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.
2305
+ # g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g.,
2306
+ # NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g.
2307
+ # , mdpi, hdpi. **Required permissions**: to access this resource, the calling
2308
+ # user needs the _View app information (read-only)_ permission for the app.
1981
2309
  class GooglePlayDeveloperReportingV1beta1StuckBackgroundWakelockRateMetricSet
1982
2310
  include Google::Apis::Core::Hashable
1983
2311
 
@@ -2075,6 +2403,37 @@ module Google
2075
2403
  end
2076
2404
  end
2077
2405
 
2406
+ # A representation of a Play release track.
2407
+ class GooglePlayDeveloperReportingV1beta1Track
2408
+ include Google::Apis::Core::Hashable
2409
+
2410
+ # Readable identifier of the track.
2411
+ # Corresponds to the JSON property `displayName`
2412
+ # @return [String]
2413
+ attr_accessor :display_name
2414
+
2415
+ # Represents all active releases in the track.
2416
+ # Corresponds to the JSON property `servingReleases`
2417
+ # @return [Array<Google::Apis::PlaydeveloperreportingV1beta1::GooglePlayDeveloperReportingV1beta1Release>]
2418
+ attr_accessor :serving_releases
2419
+
2420
+ # The type of the track.
2421
+ # Corresponds to the JSON property `type`
2422
+ # @return [String]
2423
+ attr_accessor :type
2424
+
2425
+ def initialize(**args)
2426
+ update!(**args)
2427
+ end
2428
+
2429
+ # Update properties of this object
2430
+ def update!(**args)
2431
+ @display_name = args[:display_name] if args.key?(:display_name)
2432
+ @serving_releases = args[:serving_releases] if args.key?(:serving_releases)
2433
+ @type = args[:type] if args.key?(:type)
2434
+ end
2435
+ end
2436
+
2078
2437
  # Represents civil time (or occasionally physical time). This type can represent
2079
2438
  # a civil time in one of a few possible ways: * When utc_offset is set and
2080
2439
  # time_zone is unset: a civil time on a calendar day with a particular offset