google-apis-androidpublisher_v3 0.82.0 → 0.83.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: 4346823f69728751af3a0a8d1a7a9820173846a1bb41eddf0f31c4091ee15b77
4
- data.tar.gz: 9fe16fb9dc6be6ec524e30187a2a0ead7259aaa3437e7f9713503f14f5dbad0e
3
+ metadata.gz: 6522f45034c980e7f9a8afc063cb6841435055d73b5221dbff9a9d1e9bdbd8da
4
+ data.tar.gz: '078060b2349a8c48216b11d53743d8d1a8429179596680676cacba6642b0c24e'
5
5
  SHA512:
6
- metadata.gz: 580c58d6ec82c3aeba2452089cd1d22700d52af152513a12e6f2d25b7d31a8cbe235a56741bf6542f61d3b3ace6926a06043353e76c4798df9916bfd1a0f8705
7
- data.tar.gz: '018f80da3bc1891e1829b746a2e01a8489f1b75febada760f8ee6d88b69a77ea8488b350804e0dafe9d5408fca495e064e3a9dc6a89921683f39f7ece9fb0f26'
6
+ metadata.gz: 02db15012f1b872c9171dd215912b1639fdb7a6d3e80cfd3423036ede0621bd1de410117d5c1adf6e936a9c2a97ca3799d830b1c3481a837e6bdb6eb65e89f97
7
+ data.tar.gz: d4f4d1557964dc3c9352ec2e2f84bc6d50f07eb5785517f97cb94ea66ceadc93d2dd955d5a1fbbd9e14bb1a824c671ac029c91a60af9ac0554f0404958472731
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.83.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250710
6
+
3
7
  ### v0.82.0 (2025-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20250701
@@ -4148,11 +4148,24 @@ module Google
4148
4148
  # @return [String]
4149
4149
  attr_accessor :offer_id
4150
4150
 
4151
+ # ID of the purchase option. This field is set for both purchase options and
4152
+ # variant offers. For purchase options, this ID identifies the purchase option
4153
+ # itself. For variant offers, this ID refers to the associated purchase option,
4154
+ # and in conjunction with offer_id it identifies the variant offer.
4155
+ # Corresponds to the JSON property `purchaseOptionId`
4156
+ # @return [String]
4157
+ attr_accessor :purchase_option_id
4158
+
4151
4159
  # The number of items purchased (for multi-quantity item purchases).
4152
4160
  # Corresponds to the JSON property `quantity`
4153
4161
  # @return [Fixnum]
4154
4162
  attr_accessor :quantity
4155
4163
 
4164
+ # Details of a rental purchase.
4165
+ # Corresponds to the JSON property `rentalDetails`
4166
+ # @return [Google::Apis::AndroidpublisherV3::RentalDetails]
4167
+ attr_accessor :rental_details
4168
+
4156
4169
  def initialize(**args)
4157
4170
  update!(**args)
4158
4171
  end
@@ -4160,7 +4173,9 @@ module Google
4160
4173
  # Update properties of this object
4161
4174
  def update!(**args)
4162
4175
  @offer_id = args[:offer_id] if args.key?(:offer_id)
4176
+ @purchase_option_id = args[:purchase_option_id] if args.key?(:purchase_option_id)
4163
4177
  @quantity = args[:quantity] if args.key?(:quantity)
4178
+ @rental_details = args[:rental_details] if args.key?(:rental_details)
4164
4179
  end
4165
4180
  end
4166
4181
 
@@ -5579,6 +5594,19 @@ module Google
5579
5594
  end
5580
5595
  end
5581
5596
 
5597
+ # Details of a rental purchase.
5598
+ class RentalDetails
5599
+ include Google::Apis::Core::Hashable
5600
+
5601
+ def initialize(**args)
5602
+ update!(**args)
5603
+ end
5604
+
5605
+ # Update properties of this object
5606
+ def update!(**args)
5607
+ end
5608
+ end
5609
+
5582
5610
  # Information specific to cancellations caused by subscription replacement.
5583
5611
  class ReplacementCancellation
5584
5612
  include Google::Apis::Core::Hashable
@@ -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.82.0"
19
+ GEM_VERSION = "0.83.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 = "20250701"
25
+ REVISION = "20250710"
26
26
  end
27
27
  end
28
28
  end
@@ -1084,6 +1084,12 @@ module Google
1084
1084
  include Google::Apis::Core::JsonObjectSupport
1085
1085
  end
1086
1086
 
1087
+ class RentalDetails
1088
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1089
+
1090
+ include Google::Apis::Core::JsonObjectSupport
1091
+ end
1092
+
1087
1093
  class ReplacementCancellation
1088
1094
  class Representation < Google::Apis::Core::JsonRepresentation; end
1089
1095
 
@@ -2867,7 +2873,10 @@ module Google
2867
2873
  # @private
2868
2874
  class Representation < Google::Apis::Core::JsonRepresentation
2869
2875
  property :offer_id, as: 'offerId'
2876
+ property :purchase_option_id, as: 'purchaseOptionId'
2870
2877
  property :quantity, as: 'quantity'
2878
+ property :rental_details, as: 'rentalDetails', class: Google::Apis::AndroidpublisherV3::RentalDetails, decorator: Google::Apis::AndroidpublisherV3::RentalDetails::Representation
2879
+
2871
2880
  end
2872
2881
  end
2873
2882
 
@@ -3283,6 +3292,12 @@ module Google
3283
3292
  end
3284
3293
  end
3285
3294
 
3295
+ class RentalDetails
3296
+ # @private
3297
+ class Representation < Google::Apis::Core::JsonRepresentation
3298
+ end
3299
+ end
3300
+
3286
3301
  class ReplacementCancellation
3287
3302
  # @private
3288
3303
  class Representation < Google::Apis::Core::JsonRepresentation
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.82.0
4
+ version: 0.83.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.82.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.83.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: