google-apis-androidpublisher_v3 0.84.0 → 0.85.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: 6e44396ba6f7177f602875c2d7f0d816475a1becab8e2a606dcc7c9c4a0a744f
|
4
|
+
data.tar.gz: 33e98ce532f1a3b65ea0397ffb72eae84fbcce5717a79063794f0c454be8c6cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73916980c8a103b4716cbc20c986aacf00002b55f3e691b5f3d06a75d13921f2df22cc6cc9afd69a7cc379db26698f1f574f5ca67907284f4801b1523304e390
|
7
|
+
data.tar.gz: aba07b16f11ebbfc6442fe50b066010d00b6819b73e2ea3508d248b50b8fe099eb2915335617534c7ee3474057dc9eacba51cc9be8750f7fe07220a3184537c6
|
data/CHANGELOG.md
CHANGED
@@ -2137,6 +2137,19 @@ module Google
|
|
2137
2137
|
end
|
2138
2138
|
end
|
2139
2139
|
|
2140
|
+
# Information related to deferred item replacement.
|
2141
|
+
class DeferredItemRemoval
|
2142
|
+
include Google::Apis::Core::Hashable
|
2143
|
+
|
2144
|
+
def initialize(**args)
|
2145
|
+
update!(**args)
|
2146
|
+
end
|
2147
|
+
|
2148
|
+
# Update properties of this object
|
2149
|
+
def update!(**args)
|
2150
|
+
end
|
2151
|
+
end
|
2152
|
+
|
2140
2153
|
# Information related to deferred item replacement.
|
2141
2154
|
class DeferredItemReplacement
|
2142
2155
|
include Google::Apis::Core::Hashable
|
@@ -8162,6 +8175,11 @@ module Google
|
|
8162
8175
|
# @return [Google::Apis::AndroidpublisherV3::AutoRenewingPlan]
|
8163
8176
|
attr_accessor :auto_renewing_plan
|
8164
8177
|
|
8178
|
+
# Information related to deferred item replacement.
|
8179
|
+
# Corresponds to the JSON property `deferredItemRemoval`
|
8180
|
+
# @return [Google::Apis::AndroidpublisherV3::DeferredItemRemoval]
|
8181
|
+
attr_accessor :deferred_item_removal
|
8182
|
+
|
8165
8183
|
# Information related to deferred item replacement.
|
8166
8184
|
# Corresponds to the JSON property `deferredItemReplacement`
|
8167
8185
|
# @return [Google::Apis::AndroidpublisherV3::DeferredItemReplacement]
|
@@ -8207,6 +8225,7 @@ module Google
|
|
8207
8225
|
# Update properties of this object
|
8208
8226
|
def update!(**args)
|
8209
8227
|
@auto_renewing_plan = args[:auto_renewing_plan] if args.key?(:auto_renewing_plan)
|
8228
|
+
@deferred_item_removal = args[:deferred_item_removal] if args.key?(:deferred_item_removal)
|
8210
8229
|
@deferred_item_replacement = args[:deferred_item_replacement] if args.key?(:deferred_item_replacement)
|
8211
8230
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
8212
8231
|
@latest_successful_order_id = args[:latest_successful_order_id] if args.key?(:latest_successful_order_id)
|
@@ -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.85.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 = "20250807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -490,6 +490,12 @@ module Google
|
|
490
490
|
include Google::Apis::Core::JsonObjectSupport
|
491
491
|
end
|
492
492
|
|
493
|
+
class DeferredItemRemoval
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
|
+
|
496
|
+
include Google::Apis::Core::JsonObjectSupport
|
497
|
+
end
|
498
|
+
|
493
499
|
class DeferredItemReplacement
|
494
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
501
|
|
@@ -2555,6 +2561,12 @@ module Google
|
|
2555
2561
|
end
|
2556
2562
|
end
|
2557
2563
|
|
2564
|
+
class DeferredItemRemoval
|
2565
|
+
# @private
|
2566
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2567
|
+
end
|
2568
|
+
end
|
2569
|
+
|
2558
2570
|
class DeferredItemReplacement
|
2559
2571
|
# @private
|
2560
2572
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4316,6 +4328,8 @@ module Google
|
|
4316
4328
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4317
4329
|
property :auto_renewing_plan, as: 'autoRenewingPlan', class: Google::Apis::AndroidpublisherV3::AutoRenewingPlan, decorator: Google::Apis::AndroidpublisherV3::AutoRenewingPlan::Representation
|
4318
4330
|
|
4331
|
+
property :deferred_item_removal, as: 'deferredItemRemoval', class: Google::Apis::AndroidpublisherV3::DeferredItemRemoval, decorator: Google::Apis::AndroidpublisherV3::DeferredItemRemoval::Representation
|
4332
|
+
|
4319
4333
|
property :deferred_item_replacement, as: 'deferredItemReplacement', class: Google::Apis::AndroidpublisherV3::DeferredItemReplacement, decorator: Google::Apis::AndroidpublisherV3::DeferredItemReplacement::Representation
|
4320
4334
|
|
4321
4335
|
property :expiry_time, as: 'expiryTime'
|
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.85.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.85.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:
|