google-apis-androidpublisher_v3 0.93.0 → 0.94.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b17c84bc192f63e02924cbc2b94349a14e4cf849960b4e1ce8efcc40a2954871
4
- data.tar.gz: c07cda34aaca9f366e0ce5ccf778c66a20bf8b236c42be125ec1965e0ceaf21a
3
+ metadata.gz: 5a1eaf4323123113c6a4bf07e3452c73cb0884082612ca6caf61bcdaf7c7b2d3
4
+ data.tar.gz: dd8a5b375ea355be51c77be20b7b478cf376e49d8dac64faa6db9766d88b2731
5
5
  SHA512:
6
- metadata.gz: 6581d279a096dab6221b7564753d0db77076d859122e691d2e4093b56d5b415b822250e6e5338f8f94121a4618f6ea8d0ba1a8017cf91f3cb1a46f99a6b2e475
7
- data.tar.gz: 838d8c98a2aac1e09d5f241ba464b9eae829821901945ae40e806ecdd2aae85d13e6c10d62cccfe9e4854fdd2409b9e1f5dc5edde74113fa4e22b66ee51d1555
6
+ metadata.gz: 549b1236c0290b8320ac185b89a06a45aa28fb1302474261615c6f6cf084d89d4f1e9041336828a9251c658fda1d111f7e8abbc059e5460785affbd5eca1e06a
7
+ data.tar.gz: f1a2bd67468b8d51676ca5420c07b9fc3bd680fab4523ab2fea23fdea7e6109b99be2871a89d5da185d54dff605ac5e1edf3d9f49393207ce7ad3f264ab13c71
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.94.0 (2026-01-11)
4
+
5
+ * Regenerated from discovery document revision 20260105
6
+
3
7
  ### v0.93.0 (2025-12-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20251215
@@ -4763,6 +4763,12 @@ module Google
4763
4763
  # @return [String]
4764
4764
  attr_accessor :product_tax_category_code
4765
4765
 
4766
+ # Regional age rating information. Currently this field is only supported for
4767
+ # region code `US`.
4768
+ # Corresponds to the JSON property `regionalProductAgeRatingInfos`
4769
+ # @return [Array<Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo>]
4770
+ attr_accessor :regional_product_age_rating_infos
4771
+
4766
4772
  # A mapping from region code to tax rate details. The keys are region codes as
4767
4773
  # defined by Unicode's "CLDR".
4768
4774
  # Corresponds to the JSON property `taxRateInfoByRegionCode`
@@ -4778,6 +4784,7 @@ module Google
4778
4784
  @eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
4779
4785
  @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
4780
4786
  @product_tax_category_code = args[:product_tax_category_code] if args.key?(:product_tax_category_code)
4787
+ @regional_product_age_rating_infos = args[:regional_product_age_rating_infos] if args.key?(:regional_product_age_rating_infos)
4781
4788
  @tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
4782
4789
  end
4783
4790
  end
@@ -5661,6 +5668,12 @@ module Google
5661
5668
  # @return [String]
5662
5669
  attr_accessor :product_tax_category_code
5663
5670
 
5671
+ # Regional age rating information. Currently this field is only supported for
5672
+ # region code `US`.
5673
+ # Corresponds to the JSON property `regionalProductAgeRatingInfos`
5674
+ # @return [Array<Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo>]
5675
+ attr_accessor :regional_product_age_rating_infos
5676
+
5664
5677
  # Regional tax configuration.
5665
5678
  # Corresponds to the JSON property `regionalTaxConfigs`
5666
5679
  # @return [Array<Google::Apis::AndroidpublisherV3::RegionalTaxConfig>]
@@ -5674,6 +5687,7 @@ module Google
5674
5687
  def update!(**args)
5675
5688
  @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
5676
5689
  @product_tax_category_code = args[:product_tax_category_code] if args.key?(:product_tax_category_code)
5690
+ @regional_product_age_rating_infos = args[:regional_product_age_rating_infos] if args.key?(:regional_product_age_rating_infos)
5677
5691
  @regional_tax_configs = args[:regional_tax_configs] if args.key?(:regional_tax_configs)
5678
5692
  end
5679
5693
  end
@@ -7032,6 +7046,31 @@ module Google
7032
7046
  end
7033
7047
  end
7034
7048
 
7049
+ # Details about the age rating for a specific geographic region.
7050
+ class RegionalProductAgeRatingInfo
7051
+ include Google::Apis::Core::Hashable
7052
+
7053
+ # The age rating tier of a product for the given region.
7054
+ # Corresponds to the JSON property `productAgeRatingTier`
7055
+ # @return [String]
7056
+ attr_accessor :product_age_rating_tier
7057
+
7058
+ # Region code this configuration applies to, as defined by ISO 3166-2, e.g. "US".
7059
+ # Corresponds to the JSON property `regionCode`
7060
+ # @return [String]
7061
+ attr_accessor :region_code
7062
+
7063
+ def initialize(**args)
7064
+ update!(**args)
7065
+ end
7066
+
7067
+ # Update properties of this object
7068
+ def update!(**args)
7069
+ @product_age_rating_tier = args[:product_age_rating_tier] if args.key?(:product_age_rating_tier)
7070
+ @region_code = args[:region_code] if args.key?(:region_code)
7071
+ end
7072
+ end
7073
+
7035
7074
  # Configuration for a subscription offer in a single region.
7036
7075
  class RegionalSubscriptionOfferConfig
7037
7076
  include Google::Apis::Core::Hashable
@@ -8885,6 +8924,12 @@ module Google
8885
8924
  # @return [String]
8886
8925
  attr_accessor :product_tax_category_code
8887
8926
 
8927
+ # Regional age rating information. Currently this field is only supported for
8928
+ # region code `US`.
8929
+ # Corresponds to the JSON property `regionalProductAgeRatingInfos`
8930
+ # @return [Array<Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo>]
8931
+ attr_accessor :regional_product_age_rating_infos
8932
+
8888
8933
  # A mapping from region code to tax rate details. The keys are region codes as
8889
8934
  # defined by Unicode's "CLDR".
8890
8935
  # Corresponds to the JSON property `taxRateInfoByRegionCode`
@@ -8900,6 +8945,7 @@ module Google
8900
8945
  @eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
8901
8946
  @is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
8902
8947
  @product_tax_category_code = args[:product_tax_category_code] if args.key?(:product_tax_category_code)
8948
+ @regional_product_age_rating_infos = args[:regional_product_age_rating_infos] if args.key?(:regional_product_age_rating_infos)
8903
8949
  @tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
8904
8950
  end
8905
8951
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroidpublisherV3
18
18
  # Version of the google-apis-androidpublisher_v3 gem
19
- GEM_VERSION = "0.93.0"
19
+ GEM_VERSION = "0.94.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251215"
25
+ REVISION = "20260105"
26
26
  end
27
27
  end
28
28
  end
@@ -1354,6 +1354,12 @@ module Google
1354
1354
  include Google::Apis::Core::JsonObjectSupport
1355
1355
  end
1356
1356
 
1357
+ class RegionalProductAgeRatingInfo
1358
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1359
+
1360
+ include Google::Apis::Core::JsonObjectSupport
1361
+ end
1362
+
1357
1363
  class RegionalSubscriptionOfferConfig
1358
1364
  class Representation < Google::Apis::Core::JsonRepresentation; end
1359
1365
 
@@ -3426,6 +3432,8 @@ module Google
3426
3432
  property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
3427
3433
  property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
3428
3434
  property :product_tax_category_code, as: 'productTaxCategoryCode'
3435
+ collection :regional_product_age_rating_infos, as: 'regionalProductAgeRatingInfos', class: Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo::Representation
3436
+
3429
3437
  hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
3430
3438
 
3431
3439
  end
@@ -3695,6 +3703,8 @@ module Google
3695
3703
  class Representation < Google::Apis::Core::JsonRepresentation
3696
3704
  property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
3697
3705
  property :product_tax_category_code, as: 'productTaxCategoryCode'
3706
+ collection :regional_product_age_rating_infos, as: 'regionalProductAgeRatingInfos', class: Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo::Representation
3707
+
3698
3708
  collection :regional_tax_configs, as: 'regionalTaxConfigs', class: Google::Apis::AndroidpublisherV3::RegionalTaxConfig, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxConfig::Representation
3699
3709
 
3700
3710
  end
@@ -4093,6 +4103,14 @@ module Google
4093
4103
  end
4094
4104
  end
4095
4105
 
4106
+ class RegionalProductAgeRatingInfo
4107
+ # @private
4108
+ class Representation < Google::Apis::Core::JsonRepresentation
4109
+ property :product_age_rating_tier, as: 'productAgeRatingTier'
4110
+ property :region_code, as: 'regionCode'
4111
+ end
4112
+ end
4113
+
4096
4114
  class RegionalSubscriptionOfferConfig
4097
4115
  # @private
4098
4116
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4626,6 +4644,8 @@ module Google
4626
4644
  property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
4627
4645
  property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
4628
4646
  property :product_tax_category_code, as: 'productTaxCategoryCode'
4647
+ collection :regional_product_age_rating_infos, as: 'regionalProductAgeRatingInfos', class: Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalProductAgeRatingInfo::Representation
4648
+
4629
4649
  hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
4630
4650
 
4631
4651
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidpublisher_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.93.0
4
+ version: 0.94.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.93.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.94.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
62
62
  rdoc_options: []
63
63
  require_paths: