google-apis-androidpublisher_v3 0.75.0 → 0.76.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: ef63cbc44236060b0485b7c91c8f888ac7cfa2f686a0b4d5ca0b46af90af3d7e
|
4
|
+
data.tar.gz: 389b9279935f3933735c0340ed5cd1ad4ea08b37041867ad6268e1fc05300919
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a53ab4e5ef493787be9afe3c8372d126aefc752aef1bf6f431779b44696f4211e358471b78812a8c9e3c1a62a73b1f7586211ce0077f687f71a014916ba8e0d
|
7
|
+
data.tar.gz: 76985c0b1bcfbc164a950b36eab54732191549ee31ac9ef79ef9029a17e6b684eeabf03d732caff969c95f6b645e117e1ef79efe0ce2cbfb0a357e6d6c432bbe
|
data/CHANGELOG.md
CHANGED
@@ -731,8 +731,9 @@ module Google
|
|
731
731
|
include Google::Apis::Core::Hashable
|
732
732
|
|
733
733
|
# Optional. Account hold period of the subscription, specified in ISO 8601
|
734
|
-
# format. Acceptable values must be in
|
735
|
-
#
|
734
|
+
# format. Acceptable values must be in days and between P0D and P60D. If not
|
735
|
+
# specified, the default value is P30D. The sum of gracePeriodDuration and
|
736
|
+
# accountHoldDuration must be between P30D and P60D days, inclusive.
|
736
737
|
# Corresponds to the JSON property `accountHoldDuration`
|
737
738
|
# @return [String]
|
738
739
|
attr_accessor :account_hold_duration
|
@@ -745,9 +746,10 @@ module Google
|
|
745
746
|
attr_accessor :billing_period_duration
|
746
747
|
|
747
748
|
# Grace period of the subscription, specified in ISO 8601 format. Acceptable
|
748
|
-
# values
|
749
|
-
#
|
750
|
-
#
|
749
|
+
# values must be in days and between P0D and the lesser of 30D and base plan
|
750
|
+
# billing period. If not specified, a default value will be used based on the
|
751
|
+
# billing period. The sum of gracePeriodDuration and accountHoldDuration must be
|
752
|
+
# between P30D and P60D days, inclusive.
|
751
753
|
# Corresponds to the JSON property `gracePeriodDuration`
|
752
754
|
# @return [String]
|
753
755
|
attr_accessor :grace_period_duration
|
@@ -820,6 +822,11 @@ module Google
|
|
820
822
|
# @return [Google::Apis::AndroidpublisherV3::SubscriptionItemPriceChangeDetails]
|
821
823
|
attr_accessor :price_change_details
|
822
824
|
|
825
|
+
# Represents an amount of money with its currency type.
|
826
|
+
# Corresponds to the JSON property `recurringPrice`
|
827
|
+
# @return [Google::Apis::AndroidpublisherV3::Money]
|
828
|
+
attr_accessor :recurring_price
|
829
|
+
|
823
830
|
def initialize(**args)
|
824
831
|
update!(**args)
|
825
832
|
end
|
@@ -829,6 +836,7 @@ module Google
|
|
829
836
|
@auto_renew_enabled = args[:auto_renew_enabled] if args.key?(:auto_renew_enabled)
|
830
837
|
@installment_details = args[:installment_details] if args.key?(:installment_details)
|
831
838
|
@price_change_details = args[:price_change_details] if args.key?(:price_change_details)
|
839
|
+
@recurring_price = args[:recurring_price] if args.key?(:recurring_price)
|
832
840
|
end
|
833
841
|
end
|
834
842
|
|
@@ -3259,9 +3267,10 @@ module Google
|
|
3259
3267
|
class InstallmentsBasePlanType
|
3260
3268
|
include Google::Apis::Core::Hashable
|
3261
3269
|
|
3262
|
-
# Optional. Account hold period of the subscription, specified
|
3263
|
-
#
|
3264
|
-
#
|
3270
|
+
# Optional. Account hold period of the subscription, specified in ISO 8601
|
3271
|
+
# format. Acceptable values must be in days and between P0D and P60D. If not
|
3272
|
+
# specified, the default value is P30D. The sum of gracePeriodDuration and
|
3273
|
+
# accountHoldDuration must be between P30D and P60D days, inclusive.
|
3265
3274
|
# Corresponds to the JSON property `accountHoldDuration`
|
3266
3275
|
# @return [String]
|
3267
3276
|
attr_accessor :account_hold_duration
|
@@ -3280,9 +3289,10 @@ module Google
|
|
3280
3289
|
attr_accessor :committed_payments_count
|
3281
3290
|
|
3282
3291
|
# Grace period of the subscription, specified in ISO 8601 format. Acceptable
|
3283
|
-
# values
|
3284
|
-
#
|
3285
|
-
#
|
3292
|
+
# values must be in days and between P0D and the lesser of 30D and base plan
|
3293
|
+
# billing period. If not specified, a default value will be used based on the
|
3294
|
+
# billing period. The sum of gracePeriodDuration and accountHoldDuration must be
|
3295
|
+
# between P30D and P60D days, inclusive.
|
3286
3296
|
# Corresponds to the JSON property `gracePeriodDuration`
|
3287
3297
|
# @return [String]
|
3288
3298
|
attr_accessor :grace_period_duration
|
@@ -3936,7 +3946,7 @@ module Google
|
|
3936
3946
|
end
|
3937
3947
|
end
|
3938
3948
|
|
3939
|
-
# Represents a custom tag specified for
|
3949
|
+
# Represents a custom tag specified for a product offer.
|
3940
3950
|
class OfferTag
|
3941
3951
|
include Google::Apis::Core::Hashable
|
3942
3952
|
|
@@ -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.76.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 = "
|
25
|
+
REVISION = "20250102"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1693,6 +1693,8 @@ module Google
|
|
1693
1693
|
|
1694
1694
|
property :price_change_details, as: 'priceChangeDetails', class: Google::Apis::AndroidpublisherV3::SubscriptionItemPriceChangeDetails, decorator: Google::Apis::AndroidpublisherV3::SubscriptionItemPriceChangeDetails::Representation
|
1695
1695
|
|
1696
|
+
property :recurring_price, as: 'recurringPrice', class: Google::Apis::AndroidpublisherV3::Money, decorator: Google::Apis::AndroidpublisherV3::Money::Representation
|
1697
|
+
|
1696
1698
|
end
|
1697
1699
|
end
|
1698
1700
|
|
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.76.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:
|
11
|
+
date: 2025-01-05 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.76.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.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Play Android Developer API V3
|