google-apis-androidpublisher_v3 0.42.0 → 0.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3354d297515ec09fca7f8d68198e8fa38bc8af906944394ad8e9b027afe16a9f
4
- data.tar.gz: 914eb3307bc2c2c0981b54de4be22daa1339be20478e3d47eb0789e362bded1e
3
+ metadata.gz: f54b0e23b9825b7cd1c6efa2aa0c7d541b1ac9cd1920fd28b0392f9fda3e4a92
4
+ data.tar.gz: da661a43d7ba1de8559b5fba6ccaab4f6b8a7d34bfeca4e66a400bd0e2e9b6f2
5
5
  SHA512:
6
- metadata.gz: 975920e0cefc5fd40bfc63378f82459f0b33a1f3289673579ea3673c5cd63e8848309a54a61162fee891f7fdc54d2d9b5d9f8a594bdd1c08c28bff650f878d8d
7
- data.tar.gz: 4752162618f04d37ed44db62a3fb5d42427b1b6e3fe37bbc5acee70db17879100a14f85830d01d9f6578f7aaf297a6baf7b96c3dda03856b21ed3f2b8eb39302
6
+ metadata.gz: b149fea6c2c5f951814e49ae89d23b50164ecd5dd0c3290abc1af91aa475f29b4036198c4f01edcec68462ae21149e9c0181d62070142129d8f7bcc2023a9beb
7
+ data.tar.gz: f7ce98d9c1bd44174e13f28ed79d7856a77518941a11d6df394b7d460510f4751caa5def946e466dd797fe6743ad9f52cb320f1124e0322427ebacc311e859b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.43.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230606
6
+
3
7
  ### v0.42.0 (2023-05-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20230511
@@ -722,6 +722,25 @@ module Google
722
722
  end
723
723
  end
724
724
 
725
+ # Information related to deferred item replacement.
726
+ class DeferredItemReplacement
727
+ include Google::Apis::Core::Hashable
728
+
729
+ # The product_id going to replace the existing product_id.
730
+ # Corresponds to the JSON property `productId`
731
+ # @return [String]
732
+ attr_accessor :product_id
733
+
734
+ def initialize(**args)
735
+ update!(**args)
736
+ end
737
+
738
+ # Update properties of this object
739
+ def update!(**args)
740
+ @product_id = args[:product_id] if args.key?(:product_id)
741
+ end
742
+ end
743
+
725
744
  # Represents a deobfuscation file.
726
745
  class DeobfuscationFile
727
746
  include Google::Apis::Core::Hashable
@@ -3947,6 +3966,11 @@ module Google
3947
3966
  # @return [Google::Apis::AndroidpublisherV3::AutoRenewingPlan]
3948
3967
  attr_accessor :auto_renewing_plan
3949
3968
 
3969
+ # Information related to deferred item replacement.
3970
+ # Corresponds to the JSON property `deferredItemReplacement`
3971
+ # @return [Google::Apis::AndroidpublisherV3::DeferredItemReplacement]
3972
+ attr_accessor :deferred_item_replacement
3973
+
3950
3974
  # Time at which the subscription expired or will expire unless the access is
3951
3975
  # extended (ex. renews).
3952
3976
  # Corresponds to the JSON property `expiryTime`
@@ -3975,6 +3999,7 @@ module Google
3975
3999
  # Update properties of this object
3976
4000
  def update!(**args)
3977
4001
  @auto_renewing_plan = args[:auto_renewing_plan] if args.key?(:auto_renewing_plan)
4002
+ @deferred_item_replacement = args[:deferred_item_replacement] if args.key?(:deferred_item_replacement)
3978
4003
  @expiry_time = args[:expiry_time] if args.key?(:expiry_time)
3979
4004
  @offer_details = args[:offer_details] if args.key?(:offer_details)
3980
4005
  @prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
@@ -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.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230511"
25
+ REVISION = "20230606"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class DeferredItemReplacement
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class DeobfuscationFile
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -1114,6 +1120,13 @@ module Google
1114
1120
  end
1115
1121
  end
1116
1122
 
1123
+ class DeferredItemReplacement
1124
+ # @private
1125
+ class Representation < Google::Apis::Core::JsonRepresentation
1126
+ property :product_id, as: 'productId'
1127
+ end
1128
+ end
1129
+
1117
1130
  class DeobfuscationFile
1118
1131
  # @private
1119
1132
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2026,6 +2039,8 @@ module Google
2026
2039
  class Representation < Google::Apis::Core::JsonRepresentation
2027
2040
  property :auto_renewing_plan, as: 'autoRenewingPlan', class: Google::Apis::AndroidpublisherV3::AutoRenewingPlan, decorator: Google::Apis::AndroidpublisherV3::AutoRenewingPlan::Representation
2028
2041
 
2042
+ property :deferred_item_replacement, as: 'deferredItemReplacement', class: Google::Apis::AndroidpublisherV3::DeferredItemReplacement, decorator: Google::Apis::AndroidpublisherV3::DeferredItemReplacement::Representation
2043
+
2029
2044
  property :expiry_time, as: 'expiryTime'
2030
2045
  property :offer_details, as: 'offerDetails', class: Google::Apis::AndroidpublisherV3::OfferDetails, decorator: Google::Apis::AndroidpublisherV3::OfferDetails::Representation
2031
2046
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androidpublisher_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-14 00:00:00.000000000 Z
11
+ date: 2023-06-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
63
63
  post_install_message:
64
64
  rdoc_options: []