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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6522f45034c980e7f9a8afc063cb6841435055d73b5221dbff9a9d1e9bdbd8da
|
4
|
+
data.tar.gz: '078060b2349a8c48216b11d53743d8d1a8429179596680676cacba6642b0c24e'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02db15012f1b872c9171dd215912b1639fdb7a6d3e80cfd3423036ede0621bd1de410117d5c1adf6e936a9c2a97ca3799d830b1c3481a837e6bdb6eb65e89f97
|
7
|
+
data.tar.gz: d4f4d1557964dc3c9352ec2e2f84bc6d50f07eb5785517f97cb94ea66ceadc93d2dd955d5a1fbbd9e14bb1a824c671ac029c91a60af9ac0554f0404958472731
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
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.
|
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:
|