google-apis-androidpublisher_v3 0.74.0 → 0.75.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: ef4b2e82ecc6e0aedd392ec12410331fc8b7258e4128f68afad96abb7411e8a2
4
- data.tar.gz: 5fe164cc74e05cf38a530d6605be25267d8aa300921911e0276b4e47958caffb
3
+ metadata.gz: d8a4464b3567801f949251debfc290642f63541a51089328e3243b045430e6c5
4
+ data.tar.gz: 367839a7de29267cbc82363442a9c1b40102f46e3c4df79ae183f976785a139e
5
5
  SHA512:
6
- metadata.gz: 59c0f3ff69539a2d621e284f9a26485552bc4d6844ba732ff954520b984016e40810052747640c081a103e5727a720611ccf26f1933d0d38234763d9fefba43a
7
- data.tar.gz: fef6653825d9cf0073276f64c09122ab4709a41db3249d4afd0d00be0a164a86b3c0526c4dacc751b45c314bc38d67208bcf7773027ac2e35a5a5e9cc7ccdc70
6
+ metadata.gz: dabaa4f3f3cb12ab830c2c5208a2b5378433f9dd1d1e41714f135816feaf2d538a74db81e7369118ad77a7dc9aa9eec5a0eedc76c4707ef9c4518d29735809ca
7
+ data.tar.gz: 99d30cce30a34f9a11854d3236431a31f77dee8040c5369e64d9a84e973822ed81e94e11e7d18ce3ae4346d9f21da81016a4b3903336a963d5c4973d1a78d5f8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.75.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241125
6
+
3
7
  ### v0.74.0 (2024-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20241016
@@ -3956,6 +3956,19 @@ module Google
3956
3956
  end
3957
3957
  end
3958
3958
 
3959
+ # A single use promotion code.
3960
+ class OneTimeCode
3961
+ include Google::Apis::Core::Hashable
3962
+
3963
+ def initialize(**args)
3964
+ update!(**args)
3965
+ end
3966
+
3967
+ # Update properties of this object
3968
+ def update!(**args)
3969
+ end
3970
+ end
3971
+
3959
3972
  # Represents a one-time transaction.
3960
3973
  class OneTimeExternalTransaction
3961
3974
  include Google::Apis::Core::Hashable
@@ -5241,6 +5254,31 @@ module Google
5241
5254
  end
5242
5255
  end
5243
5256
 
5257
+ # The promotion applied on this item when purchased.
5258
+ class SignupPromotion
5259
+ include Google::Apis::Core::Hashable
5260
+
5261
+ # A single use promotion code.
5262
+ # Corresponds to the JSON property `oneTimeCode`
5263
+ # @return [Google::Apis::AndroidpublisherV3::OneTimeCode]
5264
+ attr_accessor :one_time_code
5265
+
5266
+ # A multiple use, predefined promotion code.
5267
+ # Corresponds to the JSON property `vanityCode`
5268
+ # @return [Google::Apis::AndroidpublisherV3::VanityCode]
5269
+ attr_accessor :vanity_code
5270
+
5271
+ def initialize(**args)
5272
+ update!(**args)
5273
+ end
5274
+
5275
+ # Update properties of this object
5276
+ def update!(**args)
5277
+ @one_time_code = args[:one_time_code] if args.key?(:one_time_code)
5278
+ @vanity_code = args[:vanity_code] if args.key?(:vanity_code)
5279
+ end
5280
+ end
5281
+
5244
5282
  # Holds data specific to Split APKs.
5245
5283
  class SplitApkMetadata
5246
5284
  include Google::Apis::Core::Hashable
@@ -6027,6 +6065,11 @@ module Google
6027
6065
  # @return [String]
6028
6066
  attr_accessor :product_id
6029
6067
 
6068
+ # The promotion applied on this item when purchased.
6069
+ # Corresponds to the JSON property `signupPromotion`
6070
+ # @return [Google::Apis::AndroidpublisherV3::SignupPromotion]
6071
+ attr_accessor :signup_promotion
6072
+
6030
6073
  def initialize(**args)
6031
6074
  update!(**args)
6032
6075
  end
@@ -6039,6 +6082,7 @@ module Google
6039
6082
  @offer_details = args[:offer_details] if args.key?(:offer_details)
6040
6083
  @prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
6041
6084
  @product_id = args[:product_id] if args.key?(:product_id)
6085
+ @signup_promotion = args[:signup_promotion] if args.key?(:signup_promotion)
6042
6086
  end
6043
6087
  end
6044
6088
 
@@ -7324,6 +7368,25 @@ module Google
7324
7368
  end
7325
7369
  end
7326
7370
 
7371
+ # A multiple use, predefined promotion code.
7372
+ class VanityCode
7373
+ include Google::Apis::Core::Hashable
7374
+
7375
+ # The promotion code.
7376
+ # Corresponds to the JSON property `promotionCode`
7377
+ # @return [String]
7378
+ attr_accessor :promotion_code
7379
+
7380
+ def initialize(**args)
7381
+ update!(**args)
7382
+ end
7383
+
7384
+ # Update properties of this object
7385
+ def update!(**args)
7386
+ @promotion_code = args[:promotion_code] if args.key?(:promotion_code)
7387
+ end
7388
+ end
7389
+
7327
7390
  # APK that is suitable for inclusion in a system image. The resource of
7328
7391
  # SystemApksService.
7329
7392
  class Variant
@@ -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.74.0"
19
+ GEM_VERSION = "0.75.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241016"
25
+ REVISION = "20241125"
26
26
  end
27
27
  end
28
28
  end
@@ -790,6 +790,12 @@ module Google
790
790
  include Google::Apis::Core::JsonObjectSupport
791
791
  end
792
792
 
793
+ class OneTimeCode
794
+ class Representation < Google::Apis::Core::JsonRepresentation; end
795
+
796
+ include Google::Apis::Core::JsonObjectSupport
797
+ end
798
+
793
799
  class OneTimeExternalTransaction
794
800
  class Representation < Google::Apis::Core::JsonRepresentation; end
795
801
 
@@ -1072,6 +1078,12 @@ module Google
1072
1078
  include Google::Apis::Core::JsonObjectSupport
1073
1079
  end
1074
1080
 
1081
+ class SignupPromotion
1082
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1083
+
1084
+ include Google::Apis::Core::JsonObjectSupport
1085
+ end
1086
+
1075
1087
  class SplitApkMetadata
1076
1088
  class Representation < Google::Apis::Core::JsonRepresentation; end
1077
1089
 
@@ -1396,6 +1408,12 @@ module Google
1396
1408
  include Google::Apis::Core::JsonObjectSupport
1397
1409
  end
1398
1410
 
1411
+ class VanityCode
1412
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1413
+
1414
+ include Google::Apis::Core::JsonObjectSupport
1415
+ end
1416
+
1399
1417
  class Variant
1400
1418
  class Representation < Google::Apis::Core::JsonRepresentation; end
1401
1419
 
@@ -2652,6 +2670,12 @@ module Google
2652
2670
  end
2653
2671
  end
2654
2672
 
2673
+ class OneTimeCode
2674
+ # @private
2675
+ class Representation < Google::Apis::Core::JsonRepresentation
2676
+ end
2677
+ end
2678
+
2655
2679
  class OneTimeExternalTransaction
2656
2680
  # @private
2657
2681
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3055,6 +3079,16 @@ module Google
3055
3079
  end
3056
3080
  end
3057
3081
 
3082
+ class SignupPromotion
3083
+ # @private
3084
+ class Representation < Google::Apis::Core::JsonRepresentation
3085
+ property :one_time_code, as: 'oneTimeCode', class: Google::Apis::AndroidpublisherV3::OneTimeCode, decorator: Google::Apis::AndroidpublisherV3::OneTimeCode::Representation
3086
+
3087
+ property :vanity_code, as: 'vanityCode', class: Google::Apis::AndroidpublisherV3::VanityCode, decorator: Google::Apis::AndroidpublisherV3::VanityCode::Representation
3088
+
3089
+ end
3090
+ end
3091
+
3058
3092
  class SplitApkMetadata
3059
3093
  # @private
3060
3094
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3249,6 +3283,8 @@ module Google
3249
3283
  property :prepaid_plan, as: 'prepaidPlan', class: Google::Apis::AndroidpublisherV3::PrepaidPlan, decorator: Google::Apis::AndroidpublisherV3::PrepaidPlan::Representation
3250
3284
 
3251
3285
  property :product_id, as: 'productId'
3286
+ property :signup_promotion, as: 'signupPromotion', class: Google::Apis::AndroidpublisherV3::SignupPromotion, decorator: Google::Apis::AndroidpublisherV3::SignupPromotion::Representation
3287
+
3252
3288
  end
3253
3289
  end
3254
3290
 
@@ -3637,6 +3673,13 @@ module Google
3637
3673
  end
3638
3674
  end
3639
3675
 
3676
+ class VanityCode
3677
+ # @private
3678
+ class Representation < Google::Apis::Core::JsonRepresentation
3679
+ property :promotion_code, as: 'promotionCode'
3680
+ end
3681
+ end
3682
+
3640
3683
  class Variant
3641
3684
  # @private
3642
3685
  class Representation < Google::Apis::Core::JsonRepresentation
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.74.0
4
+ version: 0.75.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: 2024-10-27 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.74.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.75.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.21
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Play Android Developer API V3