google-apis-androidpublisher_v3 0.107.0 → 0.108.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: 1d6d6530fbab8be8db68c443011147d56e5dcc8e28f72efb11443747bcd46f24
4
- data.tar.gz: b73dc5d8fc9ff14a883e0917c8a1f3212135312eec38cd077912842525f6481f
3
+ metadata.gz: af4244f138d06daa9bb0c22d82d743857e7b491082e134dfafa03396467eeef1
4
+ data.tar.gz: 48f0de565a569d1a024f39004d025e82c8403da8e00cad74383d4963fb260187
5
5
  SHA512:
6
- metadata.gz: 3915be49bc9e88938e2da5f10eb7630a156f730f48d267227995e0995b48d5dfc51c355fbdbfa18188cc07336856402f7f39e28baf3cf20726cfe1399c00e589
7
- data.tar.gz: e2d7e316a34c4cfe47c1829f115422c02e523d394ba68d7a8b9039bd07fda891b2f2b4d9821f497863c1004f89737d7e42dd127745d56eea230fa9b72c8057b3
6
+ metadata.gz: ab4be38c23c4ea5666c9d8ff162cde31ec2ab955e39d47a3bbcf39362ddf14ddbdb5a886ba67e0adc08d7410c5bbb4dd9af85c1a6e5efb4d886a8ec3d33b6143
7
+ data.tar.gz: 7279e4b1825c6388162a7eac183720db59c436a47c37cac1b8408b5fb0465d3a701e6faea4609135f3cdba1f8984c1bf06dc01c858d1df03122df99774286be7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.108.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260901
6
+
3
7
  ### v0.107.0 (2026-08-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20260817
@@ -4106,6 +4106,40 @@ module Google
4106
4106
  end
4107
4107
  end
4108
4108
 
4109
+ # Reporting details unique to the external content link program.
4110
+ class ExternalContentLinkDetails
4111
+ include Google::Apis::Core::Hashable
4112
+
4113
+ # Optional. The category of the downlaoded app. This must match the category
4114
+ # provided in Play Console during the external app verification process. Only
4115
+ # required for app installs.
4116
+ # Corresponds to the JSON property `externalAppCategory`
4117
+ # @return [String]
4118
+ attr_accessor :external_app_category
4119
+
4120
+ # Optional. The package name of the app downloaded through this transaction.
4121
+ # Only required for app installs.
4122
+ # Corresponds to the JSON property `installedAppPackage`
4123
+ # @return [String]
4124
+ attr_accessor :installed_app_package
4125
+
4126
+ # Required. The type content being reported by this transaction.
4127
+ # Corresponds to the JSON property `linkType`
4128
+ # @return [String]
4129
+ attr_accessor :link_type
4130
+
4131
+ def initialize(**args)
4132
+ update!(**args)
4133
+ end
4134
+
4135
+ # Update properties of this object
4136
+ def update!(**args)
4137
+ @external_app_category = args[:external_app_category] if args.key?(:external_app_category)
4138
+ @installed_app_package = args[:installed_app_package] if args.key?(:installed_app_package)
4139
+ @link_type = args[:link_type] if args.key?(:link_type)
4140
+ end
4141
+ end
4142
+
4109
4143
  # Reporting details unique to the external offers program.
4110
4144
  class ExternalOfferDetails
4111
4145
  include Google::Apis::Core::Hashable
@@ -4189,6 +4223,11 @@ module Google
4189
4223
  # @return [Google::Apis::AndroidpublisherV3::Price]
4190
4224
  attr_accessor :current_tax_amount
4191
4225
 
4226
+ # Reporting details unique to the external content link program.
4227
+ # Corresponds to the JSON property `externalContentLinkDetails`
4228
+ # @return [Google::Apis::AndroidpublisherV3::ExternalContentLinkDetails]
4229
+ attr_accessor :external_content_link_details
4230
+
4192
4231
  # Reporting details unique to the external offers program.
4193
4232
  # Corresponds to the JSON property `externalOfferDetails`
4194
4233
  # @return [Google::Apis::AndroidpublisherV3::ExternalOfferDetails]
@@ -4269,6 +4308,7 @@ module Google
4269
4308
  @create_time = args[:create_time] if args.key?(:create_time)
4270
4309
  @current_pre_tax_amount = args[:current_pre_tax_amount] if args.key?(:current_pre_tax_amount)
4271
4310
  @current_tax_amount = args[:current_tax_amount] if args.key?(:current_tax_amount)
4311
+ @external_content_link_details = args[:external_content_link_details] if args.key?(:external_content_link_details)
4272
4312
  @external_offer_details = args[:external_offer_details] if args.key?(:external_offer_details)
4273
4313
  @external_transaction_id = args[:external_transaction_id] if args.key?(:external_transaction_id)
4274
4314
  @one_time_transaction = args[:one_time_transaction] if args.key?(:one_time_transaction)
@@ -6756,6 +6796,27 @@ module Google
6756
6796
  end
6757
6797
  end
6758
6798
 
6799
+ # Configuration specific to game reward offers.
6800
+ class OneTimeProductGameRewardOffer
6801
+ include Google::Apis::Core::Hashable
6802
+
6803
+ # Optional. The number of times this offer can be redeemed. If unset or set to 0,
6804
+ # allows for unlimited offer redemptions. Otherwise must be a number between 1
6805
+ # and 50 inclusive.
6806
+ # Corresponds to the JSON property `redemptionLimit`
6807
+ # @return [Fixnum]
6808
+ attr_accessor :redemption_limit
6809
+
6810
+ def initialize(**args)
6811
+ update!(**args)
6812
+ end
6813
+
6814
+ # Update properties of this object
6815
+ def update!(**args)
6816
+ @redemption_limit = args[:redemption_limit] if args.key?(:redemption_limit)
6817
+ end
6818
+ end
6819
+
6759
6820
  # Regional store listing for a one-time product.
6760
6821
  class OneTimeProductListing
6761
6822
  include Google::Apis::Core::Hashable
@@ -6798,6 +6859,11 @@ module Google
6798
6859
  # @return [Google::Apis::AndroidpublisherV3::OneTimeProductDiscountedOffer]
6799
6860
  attr_accessor :discounted_offer
6800
6861
 
6862
+ # Configuration specific to game reward offers.
6863
+ # Corresponds to the JSON property `gameRewardOffer`
6864
+ # @return [Google::Apis::AndroidpublisherV3::OneTimeProductGameRewardOffer]
6865
+ attr_accessor :game_reward_offer
6866
+
6801
6867
  # Required. Immutable. The ID of this product offer. Must be unique within the
6802
6868
  # purchase option. It must start with a number or lower-case letter, and can
6803
6869
  # only contain lower-case letters (a-z), numbers (0-9), and hyphens (-). The
@@ -6857,6 +6923,7 @@ module Google
6857
6923
  # Update properties of this object
6858
6924
  def update!(**args)
6859
6925
  @discounted_offer = args[:discounted_offer] if args.key?(:discounted_offer)
6926
+ @game_reward_offer = args[:game_reward_offer] if args.key?(:game_reward_offer)
6860
6927
  @offer_id = args[:offer_id] if args.key?(:offer_id)
6861
6928
  @offer_tags = args[:offer_tags] if args.key?(:offer_tags)
6862
6929
  @package_name = args[:package_name] if args.key?(:package_name)
@@ -7934,7 +8001,7 @@ module Google
7934
8001
  end
7935
8002
  end
7936
8003
 
7937
- # An individual response to a policy question about an app.
8004
+ # An individual response (answer) to a policy question about an app.
7938
8005
  class PolicyResponse
7939
8006
  include Google::Apis::Core::Hashable
7940
8007
 
@@ -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.107.0"
19
+ GEM_VERSION = "0.108.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260817"
25
+ REVISION = "20260901"
26
26
  end
27
27
  end
28
28
  end
@@ -856,6 +856,12 @@ module Google
856
856
  include Google::Apis::Core::JsonObjectSupport
857
857
  end
858
858
 
859
+ class ExternalContentLinkDetails
860
+ class Representation < Google::Apis::Core::JsonRepresentation; end
861
+
862
+ include Google::Apis::Core::JsonObjectSupport
863
+ end
864
+
859
865
  class ExternalOfferDetails
860
866
  class Representation < Google::Apis::Core::JsonRepresentation; end
861
867
 
@@ -1324,6 +1330,12 @@ module Google
1324
1330
  include Google::Apis::Core::JsonObjectSupport
1325
1331
  end
1326
1332
 
1333
+ class OneTimeProductGameRewardOffer
1334
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1335
+
1336
+ include Google::Apis::Core::JsonObjectSupport
1337
+ end
1338
+
1327
1339
  class OneTimeProductListing
1328
1340
  class Representation < Google::Apis::Core::JsonRepresentation; end
1329
1341
 
@@ -3674,6 +3686,15 @@ module Google
3674
3686
  end
3675
3687
  end
3676
3688
 
3689
+ class ExternalContentLinkDetails
3690
+ # @private
3691
+ class Representation < Google::Apis::Core::JsonRepresentation
3692
+ property :external_app_category, as: 'externalAppCategory'
3693
+ property :installed_app_package, as: 'installedAppPackage'
3694
+ property :link_type, as: 'linkType'
3695
+ end
3696
+ end
3697
+
3677
3698
  class ExternalOfferDetails
3678
3699
  # @private
3679
3700
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3699,6 +3720,8 @@ module Google
3699
3720
 
3700
3721
  property :current_tax_amount, as: 'currentTaxAmount', class: Google::Apis::AndroidpublisherV3::Price, decorator: Google::Apis::AndroidpublisherV3::Price::Representation
3701
3722
 
3723
+ property :external_content_link_details, as: 'externalContentLinkDetails', class: Google::Apis::AndroidpublisherV3::ExternalContentLinkDetails, decorator: Google::Apis::AndroidpublisherV3::ExternalContentLinkDetails::Representation
3724
+
3702
3725
  property :external_offer_details, as: 'externalOfferDetails', class: Google::Apis::AndroidpublisherV3::ExternalOfferDetails, decorator: Google::Apis::AndroidpublisherV3::ExternalOfferDetails::Representation
3703
3726
 
3704
3727
  property :external_transaction_id, as: 'externalTransactionId'
@@ -4479,6 +4502,13 @@ module Google
4479
4502
  end
4480
4503
  end
4481
4504
 
4505
+ class OneTimeProductGameRewardOffer
4506
+ # @private
4507
+ class Representation < Google::Apis::Core::JsonRepresentation
4508
+ property :redemption_limit, :numeric_string => true, as: 'redemptionLimit'
4509
+ end
4510
+ end
4511
+
4482
4512
  class OneTimeProductListing
4483
4513
  # @private
4484
4514
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4493,6 +4523,8 @@ module Google
4493
4523
  class Representation < Google::Apis::Core::JsonRepresentation
4494
4524
  property :discounted_offer, as: 'discountedOffer', class: Google::Apis::AndroidpublisherV3::OneTimeProductDiscountedOffer, decorator: Google::Apis::AndroidpublisherV3::OneTimeProductDiscountedOffer::Representation
4495
4525
 
4526
+ property :game_reward_offer, as: 'gameRewardOffer', class: Google::Apis::AndroidpublisherV3::OneTimeProductGameRewardOffer, decorator: Google::Apis::AndroidpublisherV3::OneTimeProductGameRewardOffer::Representation
4527
+
4496
4528
  property :offer_id, as: 'offerId'
4497
4529
  collection :offer_tags, as: 'offerTags', class: Google::Apis::AndroidpublisherV3::OfferTag, decorator: Google::Apis::AndroidpublisherV3::OfferTag::Representation
4498
4530
 
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.107.0
4
+ version: 0.108.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.107.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.108.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: