google-apis-androidpublisher_v3 0.61.0 → 0.62.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: 86b8c5723254984d7a805e3b29245ceeafdf89ef4e65ceb43a6c43ecc451d419
4
- data.tar.gz: f6f84086f955b4091be6d837d3b4a875d13bbd05b768922f1bff1f10e139ba78
3
+ metadata.gz: fdd6e13ca629ffee48d4e182936ca1a063486618dbee8874202759e699a47097
4
+ data.tar.gz: 270a3b4a91bfbe81a8684b3a08f2f8a36c1d9a2585debdaf0eeacd71de55647f
5
5
  SHA512:
6
- metadata.gz: e5c24243f7e3dd8d4a40e53d9d46ea1ec54095fdff912113115512a03ce63c8d4f5ba2d2276fe79e6ca32a96cb3b00340d0eb747f64c83e278c7c59379ccb30d
7
- data.tar.gz: dc6f781168ca5ba4110598ba2472b34baa4734f25dabba76b1e30527bb69640226d5d3afdf754f4c44c2f3250042f3a87507eedbe6bc3f089be7079e832df5d0
6
+ metadata.gz: dd3ee6e015c160d06e989a92ed7af46513810ccb0d7b27aeb25db2423238523efa39a0c0ec1ec0f07f50cd3aa7ffa04439ac39c95e935e78f3ebbef406e58f95
7
+ data.tar.gz: 666979b03487f637d93be07ef0b5cc176a7350cb4e9e02afe845df0de51e06dc894f1778783625038170cffc4a4ca0248880ab42053cd6115b21425ddf889ccb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.62.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240418
6
+
3
7
  ### v0.61.0 (2024-04-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20240409
@@ -3791,8 +3791,7 @@ module Google
3791
3791
  end
3792
3792
  end
3793
3793
 
3794
- # Represents a custom tag specified for one-time products, purchase options,
3795
- # base plans and offers.
3794
+ # Represents a custom tag specified for base plans and subscription offers.
3796
3795
  class OfferTag
3797
3796
  include Google::Apis::Core::Hashable
3798
3797
 
@@ -3832,6 +3831,20 @@ module Google
3832
3831
  end
3833
3832
  end
3834
3833
 
3834
+ # Details of a recurring external transaction product which doesn't belong to
3835
+ # any other more specific category.
3836
+ class OtherRecurringProduct
3837
+ include Google::Apis::Core::Hashable
3838
+
3839
+ def initialize(**args)
3840
+ update!(**args)
3841
+ end
3842
+
3843
+ # Update properties of this object
3844
+ def update!(**args)
3845
+ end
3846
+ end
3847
+
3835
3848
  # Pricing information for any new locations Play may launch in.
3836
3849
  class OtherRegionsBasePlanConfig
3837
3850
  include Google::Apis::Core::Hashable
@@ -3897,6 +3910,12 @@ module Google
3897
3910
  # @return [Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices]
3898
3911
  attr_accessor :absolute_discounts
3899
3912
 
3913
+ # Represents the free price override configuration for any new locations Play
3914
+ # may launch for a single offer phase.
3915
+ # Corresponds to the JSON property `free`
3916
+ # @return [Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhaseFreePriceOverride]
3917
+ attr_accessor :free
3918
+
3900
3919
  # Pricing information for any new locations Play may launch in.
3901
3920
  # Corresponds to the JSON property `otherRegionsPrices`
3902
3921
  # @return [Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices]
@@ -3922,11 +3941,26 @@ module Google
3922
3941
  # Update properties of this object
3923
3942
  def update!(**args)
3924
3943
  @absolute_discounts = args[:absolute_discounts] if args.key?(:absolute_discounts)
3944
+ @free = args[:free] if args.key?(:free)
3925
3945
  @other_regions_prices = args[:other_regions_prices] if args.key?(:other_regions_prices)
3926
3946
  @relative_discount = args[:relative_discount] if args.key?(:relative_discount)
3927
3947
  end
3928
3948
  end
3929
3949
 
3950
+ # Represents the free price override configuration for any new locations Play
3951
+ # may launch for a single offer phase.
3952
+ class OtherRegionsSubscriptionOfferPhaseFreePriceOverride
3953
+ include Google::Apis::Core::Hashable
3954
+
3955
+ def initialize(**args)
3956
+ update!(**args)
3957
+ end
3958
+
3959
+ # Update properties of this object
3960
+ def update!(**args)
3961
+ end
3962
+ end
3963
+
3930
3964
  # Pricing information for any new locations Play may launch in.
3931
3965
  class OtherRegionsSubscriptionOfferPhasePrices
3932
3966
  include Google::Apis::Core::Hashable
@@ -4280,6 +4314,12 @@ module Google
4280
4314
  # @return [String]
4281
4315
  attr_accessor :migrated_transaction_program
4282
4316
 
4317
+ # Details of a recurring external transaction product which doesn't belong to
4318
+ # any other more specific category.
4319
+ # Corresponds to the JSON property `otherRecurringProduct`
4320
+ # @return [Google::Apis::AndroidpublisherV3::OtherRecurringProduct]
4321
+ attr_accessor :other_recurring_product
4322
+
4283
4323
  def initialize(**args)
4284
4324
  update!(**args)
4285
4325
  end
@@ -4290,6 +4330,7 @@ module Google
4290
4330
  @external_transaction_token = args[:external_transaction_token] if args.key?(:external_transaction_token)
4291
4331
  @initial_external_transaction_id = args[:initial_external_transaction_id] if args.key?(:initial_external_transaction_id)
4292
4332
  @migrated_transaction_program = args[:migrated_transaction_program] if args.key?(:migrated_transaction_program)
4333
+ @other_recurring_product = args[:other_recurring_product] if args.key?(:other_recurring_product)
4293
4334
  end
4294
4335
  end
4295
4336
 
@@ -4438,6 +4479,12 @@ module Google
4438
4479
  # @return [Google::Apis::AndroidpublisherV3::Money]
4439
4480
  attr_accessor :absolute_discount
4440
4481
 
4482
+ # Represents the free price override configuration for a single phase of a
4483
+ # subscription offer
4484
+ # Corresponds to the JSON property `free`
4485
+ # @return [Google::Apis::AndroidpublisherV3::RegionalSubscriptionOfferPhaseFreePriceOverride]
4486
+ attr_accessor :free
4487
+
4441
4488
  # Represents an amount of money with its currency type.
4442
4489
  # Corresponds to the JSON property `price`
4443
4490
  # @return [Google::Apis::AndroidpublisherV3::Money]
@@ -4467,12 +4514,27 @@ module Google
4467
4514
  # Update properties of this object
4468
4515
  def update!(**args)
4469
4516
  @absolute_discount = args[:absolute_discount] if args.key?(:absolute_discount)
4517
+ @free = args[:free] if args.key?(:free)
4470
4518
  @price = args[:price] if args.key?(:price)
4471
4519
  @region_code = args[:region_code] if args.key?(:region_code)
4472
4520
  @relative_discount = args[:relative_discount] if args.key?(:relative_discount)
4473
4521
  end
4474
4522
  end
4475
4523
 
4524
+ # Represents the free price override configuration for a single phase of a
4525
+ # subscription offer
4526
+ class RegionalSubscriptionOfferPhaseFreePriceOverride
4527
+ include Google::Apis::Core::Hashable
4528
+
4529
+ def initialize(**args)
4530
+ update!(**args)
4531
+ end
4532
+
4533
+ # Update properties of this object
4534
+ def update!(**args)
4535
+ end
4536
+ end
4537
+
4476
4538
  # Specified details about taxation in a given geographical region.
4477
4539
  class RegionalTaxRateInfo
4478
4540
  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.61.0"
19
+ GEM_VERSION = "0.62.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240409"
25
+ REVISION = "20240418"
26
26
  end
27
27
  end
28
28
  end
@@ -784,6 +784,12 @@ module Google
784
784
  include Google::Apis::Core::JsonObjectSupport
785
785
  end
786
786
 
787
+ class OtherRecurringProduct
788
+ class Representation < Google::Apis::Core::JsonRepresentation; end
789
+
790
+ include Google::Apis::Core::JsonObjectSupport
791
+ end
792
+
787
793
  class OtherRegionsBasePlanConfig
788
794
  class Representation < Google::Apis::Core::JsonRepresentation; end
789
795
 
@@ -802,6 +808,12 @@ module Google
802
808
  include Google::Apis::Core::JsonObjectSupport
803
809
  end
804
810
 
811
+ class OtherRegionsSubscriptionOfferPhaseFreePriceOverride
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
805
817
  class OtherRegionsSubscriptionOfferPhasePrices
806
818
  class Representation < Google::Apis::Core::JsonRepresentation; end
807
819
 
@@ -892,6 +904,12 @@ module Google
892
904
  include Google::Apis::Core::JsonObjectSupport
893
905
  end
894
906
 
907
+ class RegionalSubscriptionOfferPhaseFreePriceOverride
908
+ class Representation < Google::Apis::Core::JsonRepresentation; end
909
+
910
+ include Google::Apis::Core::JsonObjectSupport
911
+ end
912
+
895
913
  class RegionalTaxRateInfo
896
914
  class Representation < Google::Apis::Core::JsonRepresentation; end
897
915
 
@@ -2574,6 +2592,12 @@ module Google
2574
2592
  end
2575
2593
  end
2576
2594
 
2595
+ class OtherRecurringProduct
2596
+ # @private
2597
+ class Representation < Google::Apis::Core::JsonRepresentation
2598
+ end
2599
+ end
2600
+
2577
2601
  class OtherRegionsBasePlanConfig
2578
2602
  # @private
2579
2603
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2597,12 +2621,20 @@ module Google
2597
2621
  class Representation < Google::Apis::Core::JsonRepresentation
2598
2622
  property :absolute_discounts, as: 'absoluteDiscounts', class: Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices, decorator: Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices::Representation
2599
2623
 
2624
+ property :free, as: 'free', class: Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhaseFreePriceOverride, decorator: Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhaseFreePriceOverride::Representation
2625
+
2600
2626
  property :other_regions_prices, as: 'otherRegionsPrices', class: Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices, decorator: Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices::Representation
2601
2627
 
2602
2628
  property :relative_discount, as: 'relativeDiscount'
2603
2629
  end
2604
2630
  end
2605
2631
 
2632
+ class OtherRegionsSubscriptionOfferPhaseFreePriceOverride
2633
+ # @private
2634
+ class Representation < Google::Apis::Core::JsonRepresentation
2635
+ end
2636
+ end
2637
+
2606
2638
  class OtherRegionsSubscriptionOfferPhasePrices
2607
2639
  # @private
2608
2640
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2697,6 +2729,8 @@ module Google
2697
2729
  property :external_transaction_token, as: 'externalTransactionToken'
2698
2730
  property :initial_external_transaction_id, as: 'initialExternalTransactionId'
2699
2731
  property :migrated_transaction_program, as: 'migratedTransactionProgram'
2732
+ property :other_recurring_product, as: 'otherRecurringProduct', class: Google::Apis::AndroidpublisherV3::OtherRecurringProduct, decorator: Google::Apis::AndroidpublisherV3::OtherRecurringProduct::Representation
2733
+
2700
2734
  end
2701
2735
  end
2702
2736
 
@@ -2743,6 +2777,8 @@ module Google
2743
2777
  class Representation < Google::Apis::Core::JsonRepresentation
2744
2778
  property :absolute_discount, as: 'absoluteDiscount', class: Google::Apis::AndroidpublisherV3::Money, decorator: Google::Apis::AndroidpublisherV3::Money::Representation
2745
2779
 
2780
+ property :free, as: 'free', class: Google::Apis::AndroidpublisherV3::RegionalSubscriptionOfferPhaseFreePriceOverride, decorator: Google::Apis::AndroidpublisherV3::RegionalSubscriptionOfferPhaseFreePriceOverride::Representation
2781
+
2746
2782
  property :price, as: 'price', class: Google::Apis::AndroidpublisherV3::Money, decorator: Google::Apis::AndroidpublisherV3::Money::Representation
2747
2783
 
2748
2784
  property :region_code, as: 'regionCode'
@@ -2750,6 +2786,12 @@ module Google
2750
2786
  end
2751
2787
  end
2752
2788
 
2789
+ class RegionalSubscriptionOfferPhaseFreePriceOverride
2790
+ # @private
2791
+ class Representation < Google::Apis::Core::JsonRepresentation
2792
+ end
2793
+ end
2794
+
2753
2795
  class RegionalTaxRateInfo
2754
2796
  # @private
2755
2797
  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.61.0
4
+ version: 0.62.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-04-14 00:00:00.000000000 Z
11
+ date: 2024-04-21 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.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.62.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: []