google-apis-androidpublisher_v3 0.61.0 → 0.63.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab311feaa4454d87eeab2fb1b24f8e9bd4745e8e7fbaf954718e4a9d813df92f
|
4
|
+
data.tar.gz: ae03f01f59e76420e0e01e0f0d5f234a9ee3b1033ae90352f196f52b794f3076
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79fa15dc6c3e90cca22775df424bef806c6374800fa524b04ab61fe8971cbd2ed8f7f0ade32ad0b846b08e12eeee11f6ccb0bdb4c61c64b9256ce40127f6ab7a
|
7
|
+
data.tar.gz: 0df6bb55b95d7b2ffe032c35913505aa932dd2a3705f34c8d6719c5a46a7130b82cc9d70d81b14623745fc84a800be04213e0fbabdb0b79432d4681cb7a89cde
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
2
2
|
|
3
|
+
### v0.63.0 (2024-05-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240509
|
6
|
+
|
7
|
+
### v0.62.0 (2024-04-21)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240418
|
10
|
+
|
3
11
|
### v0.61.0 (2024-04-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240409
|
@@ -1256,7 +1256,8 @@ module Google
|
|
1256
1256
|
end
|
1257
1257
|
end
|
1258
1258
|
|
1259
|
-
# Information specific to a subscription in
|
1259
|
+
# Information specific to a subscription in the SUBSCRIPTION_STATE_CANCELED or
|
1260
|
+
# SUBSCRIPTION_STATE_EXPIRED state.
|
1260
1261
|
class CanceledStateContext
|
1261
1262
|
include Google::Apis::Core::Hashable
|
1262
1263
|
|
@@ -3791,8 +3792,7 @@ module Google
|
|
3791
3792
|
end
|
3792
3793
|
end
|
3793
3794
|
|
3794
|
-
# Represents a custom tag specified for
|
3795
|
-
# base plans and offers.
|
3795
|
+
# Represents a custom tag specified for base plans and subscription offers.
|
3796
3796
|
class OfferTag
|
3797
3797
|
include Google::Apis::Core::Hashable
|
3798
3798
|
|
@@ -3832,6 +3832,20 @@ module Google
|
|
3832
3832
|
end
|
3833
3833
|
end
|
3834
3834
|
|
3835
|
+
# Details of a recurring external transaction product which doesn't belong to
|
3836
|
+
# any other more specific category.
|
3837
|
+
class OtherRecurringProduct
|
3838
|
+
include Google::Apis::Core::Hashable
|
3839
|
+
|
3840
|
+
def initialize(**args)
|
3841
|
+
update!(**args)
|
3842
|
+
end
|
3843
|
+
|
3844
|
+
# Update properties of this object
|
3845
|
+
def update!(**args)
|
3846
|
+
end
|
3847
|
+
end
|
3848
|
+
|
3835
3849
|
# Pricing information for any new locations Play may launch in.
|
3836
3850
|
class OtherRegionsBasePlanConfig
|
3837
3851
|
include Google::Apis::Core::Hashable
|
@@ -3897,6 +3911,12 @@ module Google
|
|
3897
3911
|
# @return [Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices]
|
3898
3912
|
attr_accessor :absolute_discounts
|
3899
3913
|
|
3914
|
+
# Represents the free price override configuration for any new locations Play
|
3915
|
+
# may launch for a single offer phase.
|
3916
|
+
# Corresponds to the JSON property `free`
|
3917
|
+
# @return [Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhaseFreePriceOverride]
|
3918
|
+
attr_accessor :free
|
3919
|
+
|
3900
3920
|
# Pricing information for any new locations Play may launch in.
|
3901
3921
|
# Corresponds to the JSON property `otherRegionsPrices`
|
3902
3922
|
# @return [Google::Apis::AndroidpublisherV3::OtherRegionsSubscriptionOfferPhasePrices]
|
@@ -3922,11 +3942,26 @@ module Google
|
|
3922
3942
|
# Update properties of this object
|
3923
3943
|
def update!(**args)
|
3924
3944
|
@absolute_discounts = args[:absolute_discounts] if args.key?(:absolute_discounts)
|
3945
|
+
@free = args[:free] if args.key?(:free)
|
3925
3946
|
@other_regions_prices = args[:other_regions_prices] if args.key?(:other_regions_prices)
|
3926
3947
|
@relative_discount = args[:relative_discount] if args.key?(:relative_discount)
|
3927
3948
|
end
|
3928
3949
|
end
|
3929
3950
|
|
3951
|
+
# Represents the free price override configuration for any new locations Play
|
3952
|
+
# may launch for a single offer phase.
|
3953
|
+
class OtherRegionsSubscriptionOfferPhaseFreePriceOverride
|
3954
|
+
include Google::Apis::Core::Hashable
|
3955
|
+
|
3956
|
+
def initialize(**args)
|
3957
|
+
update!(**args)
|
3958
|
+
end
|
3959
|
+
|
3960
|
+
# Update properties of this object
|
3961
|
+
def update!(**args)
|
3962
|
+
end
|
3963
|
+
end
|
3964
|
+
|
3930
3965
|
# Pricing information for any new locations Play may launch in.
|
3931
3966
|
class OtherRegionsSubscriptionOfferPhasePrices
|
3932
3967
|
include Google::Apis::Core::Hashable
|
@@ -4280,6 +4315,12 @@ module Google
|
|
4280
4315
|
# @return [String]
|
4281
4316
|
attr_accessor :migrated_transaction_program
|
4282
4317
|
|
4318
|
+
# Details of a recurring external transaction product which doesn't belong to
|
4319
|
+
# any other more specific category.
|
4320
|
+
# Corresponds to the JSON property `otherRecurringProduct`
|
4321
|
+
# @return [Google::Apis::AndroidpublisherV3::OtherRecurringProduct]
|
4322
|
+
attr_accessor :other_recurring_product
|
4323
|
+
|
4283
4324
|
def initialize(**args)
|
4284
4325
|
update!(**args)
|
4285
4326
|
end
|
@@ -4290,6 +4331,7 @@ module Google
|
|
4290
4331
|
@external_transaction_token = args[:external_transaction_token] if args.key?(:external_transaction_token)
|
4291
4332
|
@initial_external_transaction_id = args[:initial_external_transaction_id] if args.key?(:initial_external_transaction_id)
|
4292
4333
|
@migrated_transaction_program = args[:migrated_transaction_program] if args.key?(:migrated_transaction_program)
|
4334
|
+
@other_recurring_product = args[:other_recurring_product] if args.key?(:other_recurring_product)
|
4293
4335
|
end
|
4294
4336
|
end
|
4295
4337
|
|
@@ -4438,6 +4480,12 @@ module Google
|
|
4438
4480
|
# @return [Google::Apis::AndroidpublisherV3::Money]
|
4439
4481
|
attr_accessor :absolute_discount
|
4440
4482
|
|
4483
|
+
# Represents the free price override configuration for a single phase of a
|
4484
|
+
# subscription offer
|
4485
|
+
# Corresponds to the JSON property `free`
|
4486
|
+
# @return [Google::Apis::AndroidpublisherV3::RegionalSubscriptionOfferPhaseFreePriceOverride]
|
4487
|
+
attr_accessor :free
|
4488
|
+
|
4441
4489
|
# Represents an amount of money with its currency type.
|
4442
4490
|
# Corresponds to the JSON property `price`
|
4443
4491
|
# @return [Google::Apis::AndroidpublisherV3::Money]
|
@@ -4467,12 +4515,27 @@ module Google
|
|
4467
4515
|
# Update properties of this object
|
4468
4516
|
def update!(**args)
|
4469
4517
|
@absolute_discount = args[:absolute_discount] if args.key?(:absolute_discount)
|
4518
|
+
@free = args[:free] if args.key?(:free)
|
4470
4519
|
@price = args[:price] if args.key?(:price)
|
4471
4520
|
@region_code = args[:region_code] if args.key?(:region_code)
|
4472
4521
|
@relative_discount = args[:relative_discount] if args.key?(:relative_discount)
|
4473
4522
|
end
|
4474
4523
|
end
|
4475
4524
|
|
4525
|
+
# Represents the free price override configuration for a single phase of a
|
4526
|
+
# subscription offer
|
4527
|
+
class RegionalSubscriptionOfferPhaseFreePriceOverride
|
4528
|
+
include Google::Apis::Core::Hashable
|
4529
|
+
|
4530
|
+
def initialize(**args)
|
4531
|
+
update!(**args)
|
4532
|
+
end
|
4533
|
+
|
4534
|
+
# Update properties of this object
|
4535
|
+
def update!(**args)
|
4536
|
+
end
|
4537
|
+
end
|
4538
|
+
|
4476
4539
|
# Specified details about taxation in a given geographical region.
|
4477
4540
|
class RegionalTaxRateInfo
|
4478
4541
|
include Google::Apis::Core::Hashable
|
@@ -5784,7 +5847,8 @@ module Google
|
|
5784
5847
|
# @return [String]
|
5785
5848
|
attr_accessor :acknowledgement_state
|
5786
5849
|
|
5787
|
-
# Information specific to a subscription in
|
5850
|
+
# Information specific to a subscription in the SUBSCRIPTION_STATE_CANCELED or
|
5851
|
+
# SUBSCRIPTION_STATE_EXPIRED state.
|
5788
5852
|
# Corresponds to the JSON property `canceledStateContext`
|
5789
5853
|
# @return [Google::Apis::AndroidpublisherV3::CanceledStateContext]
|
5790
5854
|
attr_accessor :canceled_state_context
|
@@ -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.63.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 = "
|
25
|
+
REVISION = "20240509"
|
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.
|
4
|
+
version: 0.63.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-
|
11
|
+
date: 2024-05-12 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
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.63.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: []
|