google-apis-androidpublisher_v3 0.88.0 → 0.89.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d159600a30ce42999391dc91b8ccf0b1bb358663c807437f21670336884fc59c
|
|
4
|
+
data.tar.gz: c8c0afcb958276eb3a2477cb661b4639c7cb83d63344672e0d48eca6cbc68fa3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f94f7dd69bf49b7c9d0be500b9a8ad425cf81ad411084a205de6c4b2c524064376f0bac6fac681ad167b29755fadcc15cd502dda4673c50975a3d5b8524c802
|
|
7
|
+
data.tar.gz: 77f1a48075d9a1e07480da8bab98ab419a76b0ca5c96c7b89e77de6db9ca7e8a688954ab2191017cda5a11d75417e3148bce9aef089e79a68f5c2ec74a72585f
|
data/CHANGELOG.md
CHANGED
|
@@ -928,6 +928,19 @@ module Google
|
|
|
928
928
|
end
|
|
929
929
|
end
|
|
930
930
|
|
|
931
|
+
# Details of a base price pricing phase.
|
|
932
|
+
class BaseDetails
|
|
933
|
+
include Google::Apis::Core::Hashable
|
|
934
|
+
|
|
935
|
+
def initialize(**args)
|
|
936
|
+
update!(**args)
|
|
937
|
+
end
|
|
938
|
+
|
|
939
|
+
# Update properties of this object
|
|
940
|
+
def update!(**args)
|
|
941
|
+
end
|
|
942
|
+
end
|
|
943
|
+
|
|
931
944
|
# A single base plan for a subscription.
|
|
932
945
|
class BasePlan
|
|
933
946
|
include Google::Apis::Core::Hashable
|
|
@@ -2931,6 +2944,51 @@ module Google
|
|
|
2931
2944
|
end
|
|
2932
2945
|
end
|
|
2933
2946
|
|
|
2947
|
+
# User account identifier in your app.
|
|
2948
|
+
class ExternalAccountIds
|
|
2949
|
+
include Google::Apis::Core::Hashable
|
|
2950
|
+
|
|
2951
|
+
# Optional. Specifies an optional obfuscated string that is uniquely associated
|
|
2952
|
+
# with the purchaser's user account in your app. If you pass this value, Google
|
|
2953
|
+
# Play can use it to detect irregular activity. Do not use this field to store
|
|
2954
|
+
# any Personally Identifiable Information (PII) such as emails in cleartext.
|
|
2955
|
+
# Attempting to store PII in this field will result in purchases being blocked.
|
|
2956
|
+
# Google Play recommends that you use either encryption or a one-way hash to
|
|
2957
|
+
# generate an obfuscated identifier to send to Google Play. This identifier is
|
|
2958
|
+
# limited to 64 characters. This field can only be set for resubscription
|
|
2959
|
+
# purchases. See https://developer.android.com/reference/com/android/
|
|
2960
|
+
# billingclient/api/BillingFlowParams.Builder#setobfuscatedaccountid to set this
|
|
2961
|
+
# field for purchases made using the standard in-app billing flow.
|
|
2962
|
+
# Corresponds to the JSON property `obfuscatedAccountId`
|
|
2963
|
+
# @return [String]
|
|
2964
|
+
attr_accessor :obfuscated_account_id
|
|
2965
|
+
|
|
2966
|
+
# Optional. Specifies an optional obfuscated string that is uniquely associated
|
|
2967
|
+
# with the purchaser's user profile in your app. If you pass this value, Google
|
|
2968
|
+
# Play can use it to detect irregular activity. Do not use this field to store
|
|
2969
|
+
# any Personally Identifiable Information (PII) such as emails in cleartext.
|
|
2970
|
+
# Attempting to store PII in this field will result in purchases being blocked.
|
|
2971
|
+
# Google Play recommends that you use either encryption or a one-way hash to
|
|
2972
|
+
# generate an obfuscated identifier to send to Google Play. This identifier is
|
|
2973
|
+
# limited to 64 characters. This field can only be set for resubscription
|
|
2974
|
+
# purchases. See https://developer.android.com/reference/com/android/
|
|
2975
|
+
# billingclient/api/BillingFlowParams.Builder#setobfuscatedprofileid to set this
|
|
2976
|
+
# field for purchases made using the standard in-app billing flow.
|
|
2977
|
+
# Corresponds to the JSON property `obfuscatedProfileId`
|
|
2978
|
+
# @return [String]
|
|
2979
|
+
attr_accessor :obfuscated_profile_id
|
|
2980
|
+
|
|
2981
|
+
def initialize(**args)
|
|
2982
|
+
update!(**args)
|
|
2983
|
+
end
|
|
2984
|
+
|
|
2985
|
+
# Update properties of this object
|
|
2986
|
+
def update!(**args)
|
|
2987
|
+
@obfuscated_account_id = args[:obfuscated_account_id] if args.key?(:obfuscated_account_id)
|
|
2988
|
+
@obfuscated_profile_id = args[:obfuscated_profile_id] if args.key?(:obfuscated_profile_id)
|
|
2989
|
+
end
|
|
2990
|
+
end
|
|
2991
|
+
|
|
2934
2992
|
# Details of an external subscription.
|
|
2935
2993
|
class ExternalSubscription
|
|
2936
2994
|
include Google::Apis::Core::Hashable
|
|
@@ -3214,6 +3272,19 @@ module Google
|
|
|
3214
3272
|
end
|
|
3215
3273
|
end
|
|
3216
3274
|
|
|
3275
|
+
# Details of a free trial pricing phase.
|
|
3276
|
+
class FreeTrialDetails
|
|
3277
|
+
include Google::Apis::Core::Hashable
|
|
3278
|
+
|
|
3279
|
+
def initialize(**args)
|
|
3280
|
+
update!(**args)
|
|
3281
|
+
end
|
|
3282
|
+
|
|
3283
|
+
# Update properties of this object
|
|
3284
|
+
def update!(**args)
|
|
3285
|
+
end
|
|
3286
|
+
end
|
|
3287
|
+
|
|
3217
3288
|
# A full refund of the remaining amount of a transaction.
|
|
3218
3289
|
class FullRefund
|
|
3219
3290
|
include Google::Apis::Core::Hashable
|
|
@@ -4159,6 +4230,19 @@ module Google
|
|
|
4159
4230
|
end
|
|
4160
4231
|
end
|
|
4161
4232
|
|
|
4233
|
+
# Details of an introductory price pricing phase.
|
|
4234
|
+
class IntroductoryPriceDetails
|
|
4235
|
+
include Google::Apis::Core::Hashable
|
|
4236
|
+
|
|
4237
|
+
def initialize(**args)
|
|
4238
|
+
update!(**args)
|
|
4239
|
+
end
|
|
4240
|
+
|
|
4241
|
+
# Update properties of this object
|
|
4242
|
+
def update!(**args)
|
|
4243
|
+
end
|
|
4244
|
+
end
|
|
4245
|
+
|
|
4162
4246
|
# Contains the introductory price information for a subscription.
|
|
4163
4247
|
class IntroductoryPriceInfo
|
|
4164
4248
|
include Google::Apis::Core::Hashable
|
|
@@ -4203,6 +4287,43 @@ module Google
|
|
|
4203
4287
|
end
|
|
4204
4288
|
end
|
|
4205
4289
|
|
|
4290
|
+
# Details about a subscription line item that is being replaced.
|
|
4291
|
+
class ItemReplacement
|
|
4292
|
+
include Google::Apis::Core::Hashable
|
|
4293
|
+
|
|
4294
|
+
# The base plan ID of the subscription line item being replaced.
|
|
4295
|
+
# Corresponds to the JSON property `basePlanId`
|
|
4296
|
+
# @return [String]
|
|
4297
|
+
attr_accessor :base_plan_id
|
|
4298
|
+
|
|
4299
|
+
# The offer ID of the subscription line item being replaced, if applicable.
|
|
4300
|
+
# Corresponds to the JSON property `offerId`
|
|
4301
|
+
# @return [String]
|
|
4302
|
+
attr_accessor :offer_id
|
|
4303
|
+
|
|
4304
|
+
# The product ID of the subscription line item being replaced.
|
|
4305
|
+
# Corresponds to the JSON property `productId`
|
|
4306
|
+
# @return [String]
|
|
4307
|
+
attr_accessor :product_id
|
|
4308
|
+
|
|
4309
|
+
# The replacement mode applied during the purchase.
|
|
4310
|
+
# Corresponds to the JSON property `replacementMode`
|
|
4311
|
+
# @return [String]
|
|
4312
|
+
attr_accessor :replacement_mode
|
|
4313
|
+
|
|
4314
|
+
def initialize(**args)
|
|
4315
|
+
update!(**args)
|
|
4316
|
+
end
|
|
4317
|
+
|
|
4318
|
+
# Update properties of this object
|
|
4319
|
+
def update!(**args)
|
|
4320
|
+
@base_plan_id = args[:base_plan_id] if args.key?(:base_plan_id)
|
|
4321
|
+
@offer_id = args[:offer_id] if args.key?(:offer_id)
|
|
4322
|
+
@product_id = args[:product_id] if args.key?(:product_id)
|
|
4323
|
+
@replacement_mode = args[:replacement_mode] if args.key?(:replacement_mode)
|
|
4324
|
+
end
|
|
4325
|
+
end
|
|
4326
|
+
|
|
4206
4327
|
# Targeting based on language.
|
|
4207
4328
|
class LanguageTargeting
|
|
4208
4329
|
include Google::Apis::Core::Hashable
|
|
@@ -4853,6 +4974,50 @@ module Google
|
|
|
4853
4974
|
end
|
|
4854
4975
|
end
|
|
4855
4976
|
|
|
4977
|
+
# Details of a pricing phase for the entitlement period funded by this order.
|
|
4978
|
+
class OfferPhaseDetails
|
|
4979
|
+
include Google::Apis::Core::Hashable
|
|
4980
|
+
|
|
4981
|
+
# Details of a base price pricing phase.
|
|
4982
|
+
# Corresponds to the JSON property `baseDetails`
|
|
4983
|
+
# @return [Google::Apis::AndroidpublisherV3::BaseDetails]
|
|
4984
|
+
attr_accessor :base_details
|
|
4985
|
+
|
|
4986
|
+
# Details of a free trial pricing phase.
|
|
4987
|
+
# Corresponds to the JSON property `freeTrialDetails`
|
|
4988
|
+
# @return [Google::Apis::AndroidpublisherV3::FreeTrialDetails]
|
|
4989
|
+
attr_accessor :free_trial_details
|
|
4990
|
+
|
|
4991
|
+
# Details of an introductory price pricing phase.
|
|
4992
|
+
# Corresponds to the JSON property `introductoryPriceDetails`
|
|
4993
|
+
# @return [Google::Apis::AndroidpublisherV3::IntroductoryPriceDetails]
|
|
4994
|
+
attr_accessor :introductory_price_details
|
|
4995
|
+
|
|
4996
|
+
# Details of a proration period. A proration period can be a period calculated
|
|
4997
|
+
# during a plan change to cover existing entitlements (For more information, see
|
|
4998
|
+
# [Allow users to upgrade, downgrade, or change their subscription](https://
|
|
4999
|
+
# developer.android.com/google/play/billing/subscriptions#allow-users-change),
|
|
5000
|
+
# or a prorated period to align add-on renewal dates with the base (For more
|
|
5001
|
+
# information, see [Rules applicable for items in the purchase](https://
|
|
5002
|
+
# developer.android.com/google/play/billing/subscription-with-addons#rules-base-
|
|
5003
|
+
# addons)).
|
|
5004
|
+
# Corresponds to the JSON property `prorationPeriodDetails`
|
|
5005
|
+
# @return [Google::Apis::AndroidpublisherV3::ProrationPeriodDetails]
|
|
5006
|
+
attr_accessor :proration_period_details
|
|
5007
|
+
|
|
5008
|
+
def initialize(**args)
|
|
5009
|
+
update!(**args)
|
|
5010
|
+
end
|
|
5011
|
+
|
|
5012
|
+
# Update properties of this object
|
|
5013
|
+
def update!(**args)
|
|
5014
|
+
@base_details = args[:base_details] if args.key?(:base_details)
|
|
5015
|
+
@free_trial_details = args[:free_trial_details] if args.key?(:free_trial_details)
|
|
5016
|
+
@introductory_price_details = args[:introductory_price_details] if args.key?(:introductory_price_details)
|
|
5017
|
+
@proration_period_details = args[:proration_period_details] if args.key?(:proration_period_details)
|
|
5018
|
+
end
|
|
5019
|
+
end
|
|
5020
|
+
|
|
4856
5021
|
# Represents a custom tag specified for a product offer.
|
|
4857
5022
|
class OfferTag
|
|
4858
5023
|
include Google::Apis::Core::Hashable
|
|
@@ -5810,6 +5975,34 @@ module Google
|
|
|
5810
5975
|
end
|
|
5811
5976
|
end
|
|
5812
5977
|
|
|
5978
|
+
# Information specific to an out of app purchase.
|
|
5979
|
+
class OutOfAppPurchaseContext
|
|
5980
|
+
include Google::Apis::Core::Hashable
|
|
5981
|
+
|
|
5982
|
+
# User account identifier in the third-party service.
|
|
5983
|
+
# Corresponds to the JSON property `expiredExternalAccountIdentifiers`
|
|
5984
|
+
# @return [Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers]
|
|
5985
|
+
attr_accessor :expired_external_account_identifiers
|
|
5986
|
+
|
|
5987
|
+
# The purchase token of the last expired subscription. This purchase token must
|
|
5988
|
+
# only be used to help identify the user if the link between the purchaseToken
|
|
5989
|
+
# and user is stored in your database. This cannot be used to call the Google
|
|
5990
|
+
# Developer API if it has been more than 60 days since expiry.
|
|
5991
|
+
# Corresponds to the JSON property `expiredPurchaseToken`
|
|
5992
|
+
# @return [String]
|
|
5993
|
+
attr_accessor :expired_purchase_token
|
|
5994
|
+
|
|
5995
|
+
def initialize(**args)
|
|
5996
|
+
update!(**args)
|
|
5997
|
+
end
|
|
5998
|
+
|
|
5999
|
+
# Update properties of this object
|
|
6000
|
+
def update!(**args)
|
|
6001
|
+
@expired_external_account_identifiers = args[:expired_external_account_identifiers] if args.key?(:expired_external_account_identifiers)
|
|
6002
|
+
@expired_purchase_token = args[:expired_purchase_token] if args.key?(:expired_purchase_token)
|
|
6003
|
+
end
|
|
6004
|
+
end
|
|
6005
|
+
|
|
5813
6006
|
# Information about the current page. List operations that supports paging
|
|
5814
6007
|
# return only one "page" of results. This protocol buffer message describes the
|
|
5815
6008
|
# page that has been returned.
|
|
@@ -6479,6 +6672,45 @@ module Google
|
|
|
6479
6672
|
end
|
|
6480
6673
|
end
|
|
6481
6674
|
|
|
6675
|
+
# Details of a proration period. A proration period can be a period calculated
|
|
6676
|
+
# during a plan change to cover existing entitlements (For more information, see
|
|
6677
|
+
# [Allow users to upgrade, downgrade, or change their subscription](https://
|
|
6678
|
+
# developer.android.com/google/play/billing/subscriptions#allow-users-change),
|
|
6679
|
+
# or a prorated period to align add-on renewal dates with the base (For more
|
|
6680
|
+
# information, see [Rules applicable for items in the purchase](https://
|
|
6681
|
+
# developer.android.com/google/play/billing/subscription-with-addons#rules-base-
|
|
6682
|
+
# addons)).
|
|
6683
|
+
class ProrationPeriodDetails
|
|
6684
|
+
include Google::Apis::Core::Hashable
|
|
6685
|
+
|
|
6686
|
+
# The last order id of the original subscription purchase prior to the plan
|
|
6687
|
+
# change. This is only populated if this proration period is from an ugrade/
|
|
6688
|
+
# downgrade from a previous subscription and carries the remaining offer phase
|
|
6689
|
+
# from the linked order of the previous subscription.
|
|
6690
|
+
# Corresponds to the JSON property `linkedOrderId`
|
|
6691
|
+
# @return [String]
|
|
6692
|
+
attr_accessor :linked_order_id
|
|
6693
|
+
|
|
6694
|
+
# Represent the original offer phase from the purchased the line item if the
|
|
6695
|
+
# proration period contains any of them. For example, a proration period from
|
|
6696
|
+
# CHARGE_FULL_PRICE plan change may merge the 1st offer phase of the
|
|
6697
|
+
# subscription offer of the new product user purchased. In this case, the
|
|
6698
|
+
# original offer phase will be set here.
|
|
6699
|
+
# Corresponds to the JSON property `originalOfferPhase`
|
|
6700
|
+
# @return [String]
|
|
6701
|
+
attr_accessor :original_offer_phase
|
|
6702
|
+
|
|
6703
|
+
def initialize(**args)
|
|
6704
|
+
update!(**args)
|
|
6705
|
+
end
|
|
6706
|
+
|
|
6707
|
+
# Update properties of this object
|
|
6708
|
+
def update!(**args)
|
|
6709
|
+
@linked_order_id = args[:linked_order_id] if args.key?(:linked_order_id)
|
|
6710
|
+
@original_offer_phase = args[:original_offer_phase] if args.key?(:original_offer_phase)
|
|
6711
|
+
end
|
|
6712
|
+
end
|
|
6713
|
+
|
|
6482
6714
|
# Details about taxation, Google Play policy and legal compliance for one-time
|
|
6483
6715
|
# product purchase options.
|
|
6484
6716
|
class PurchaseOptionTaxAndComplianceSettings
|
|
@@ -7758,11 +7990,17 @@ module Google
|
|
|
7758
7990
|
# @return [String]
|
|
7759
7991
|
attr_accessor :offer_id
|
|
7760
7992
|
|
|
7761
|
-
# The pricing phase for the billing period funded by this order.
|
|
7993
|
+
# The pricing phase for the billing period funded by this order. Deprecated. Use
|
|
7994
|
+
# offer_phase_details instead.
|
|
7762
7995
|
# Corresponds to the JSON property `offerPhase`
|
|
7763
7996
|
# @return [String]
|
|
7764
7997
|
attr_accessor :offer_phase
|
|
7765
7998
|
|
|
7999
|
+
# Details of a pricing phase for the entitlement period funded by this order.
|
|
8000
|
+
# Corresponds to the JSON property `offerPhaseDetails`
|
|
8001
|
+
# @return [Google::Apis::AndroidpublisherV3::OfferPhaseDetails]
|
|
8002
|
+
attr_accessor :offer_phase_details
|
|
8003
|
+
|
|
7766
8004
|
# The end of the billing period funded by this order. This is a snapshot of the
|
|
7767
8005
|
# billing/service period end time at the moment the order was processed, and
|
|
7768
8006
|
# should be used only for accounting. To get the current end time of the
|
|
@@ -7787,6 +8025,7 @@ module Google
|
|
|
7787
8025
|
@base_plan_id = args[:base_plan_id] if args.key?(:base_plan_id)
|
|
7788
8026
|
@offer_id = args[:offer_id] if args.key?(:offer_id)
|
|
7789
8027
|
@offer_phase = args[:offer_phase] if args.key?(:offer_phase)
|
|
8028
|
+
@offer_phase_details = args[:offer_phase_details] if args.key?(:offer_phase_details)
|
|
7790
8029
|
@service_period_end_time = args[:service_period_end_time] if args.key?(:service_period_end_time)
|
|
7791
8030
|
@service_period_start_time = args[:service_period_start_time] if args.key?(:service_period_start_time)
|
|
7792
8031
|
end
|
|
@@ -8324,6 +8563,11 @@ module Google
|
|
|
8324
8563
|
# @return [String]
|
|
8325
8564
|
attr_accessor :expiry_time
|
|
8326
8565
|
|
|
8566
|
+
# Details about a subscription line item that is being replaced.
|
|
8567
|
+
# Corresponds to the JSON property `itemReplacement`
|
|
8568
|
+
# @return [Google::Apis::AndroidpublisherV3::ItemReplacement]
|
|
8569
|
+
attr_accessor :item_replacement
|
|
8570
|
+
|
|
8327
8571
|
# The order id of the latest successful order associated with this item. Not
|
|
8328
8572
|
# present if the item is not owned by the user yet (e.g. the item being deferred
|
|
8329
8573
|
# replaced to).
|
|
@@ -8361,6 +8605,7 @@ module Google
|
|
|
8361
8605
|
@deferred_item_removal = args[:deferred_item_removal] if args.key?(:deferred_item_removal)
|
|
8362
8606
|
@deferred_item_replacement = args[:deferred_item_replacement] if args.key?(:deferred_item_replacement)
|
|
8363
8607
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
|
8608
|
+
@item_replacement = args[:item_replacement] if args.key?(:item_replacement)
|
|
8364
8609
|
@latest_successful_order_id = args[:latest_successful_order_id] if args.key?(:latest_successful_order_id)
|
|
8365
8610
|
@offer_details = args[:offer_details] if args.key?(:offer_details)
|
|
8366
8611
|
@prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
|
|
@@ -8420,6 +8665,11 @@ module Google
|
|
|
8420
8665
|
# @return [String]
|
|
8421
8666
|
attr_accessor :linked_purchase_token
|
|
8422
8667
|
|
|
8668
|
+
# Information specific to an out of app purchase.
|
|
8669
|
+
# Corresponds to the JSON property `outOfAppPurchaseContext`
|
|
8670
|
+
# @return [Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext]
|
|
8671
|
+
attr_accessor :out_of_app_purchase_context
|
|
8672
|
+
|
|
8423
8673
|
# Information specific to a subscription in paused state.
|
|
8424
8674
|
# Corresponds to the JSON property `pausedStateContext`
|
|
8425
8675
|
# @return [Google::Apis::AndroidpublisherV3::PausedStateContext]
|
|
@@ -8465,6 +8715,7 @@ module Google
|
|
|
8465
8715
|
@latest_order_id = args[:latest_order_id] if args.key?(:latest_order_id)
|
|
8466
8716
|
@line_items = args[:line_items] if args.key?(:line_items)
|
|
8467
8717
|
@linked_purchase_token = args[:linked_purchase_token] if args.key?(:linked_purchase_token)
|
|
8718
|
+
@out_of_app_purchase_context = args[:out_of_app_purchase_context] if args.key?(:out_of_app_purchase_context)
|
|
8468
8719
|
@paused_state_context = args[:paused_state_context] if args.key?(:paused_state_context)
|
|
8469
8720
|
@region_code = args[:region_code] if args.key?(:region_code)
|
|
8470
8721
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
@@ -8483,6 +8734,11 @@ module Google
|
|
|
8483
8734
|
# @return [String]
|
|
8484
8735
|
attr_accessor :developer_payload
|
|
8485
8736
|
|
|
8737
|
+
# User account identifier in your app.
|
|
8738
|
+
# Corresponds to the JSON property `externalAccountIds`
|
|
8739
|
+
# @return [Google::Apis::AndroidpublisherV3::ExternalAccountIds]
|
|
8740
|
+
attr_accessor :external_account_ids
|
|
8741
|
+
|
|
8486
8742
|
def initialize(**args)
|
|
8487
8743
|
update!(**args)
|
|
8488
8744
|
end
|
|
@@ -8490,6 +8746,7 @@ module Google
|
|
|
8490
8746
|
# Update properties of this object
|
|
8491
8747
|
def update!(**args)
|
|
8492
8748
|
@developer_payload = args[:developer_payload] if args.key?(:developer_payload)
|
|
8749
|
+
@external_account_ids = args[:external_account_ids] if args.key?(:external_account_ids)
|
|
8493
8750
|
end
|
|
8494
8751
|
end
|
|
8495
8752
|
|
|
@@ -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.89.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251119"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -196,6 +196,12 @@ module Google
|
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
+
class BaseDetails
|
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
|
+
|
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
203
|
+
end
|
|
204
|
+
|
|
199
205
|
class BasePlan
|
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
207
|
|
|
@@ -658,6 +664,12 @@ module Google
|
|
|
658
664
|
include Google::Apis::Core::JsonObjectSupport
|
|
659
665
|
end
|
|
660
666
|
|
|
667
|
+
class ExternalAccountIds
|
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
669
|
+
|
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
671
|
+
end
|
|
672
|
+
|
|
661
673
|
class ExternalSubscription
|
|
662
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
663
675
|
|
|
@@ -688,6 +700,12 @@ module Google
|
|
|
688
700
|
include Google::Apis::Core::JsonObjectSupport
|
|
689
701
|
end
|
|
690
702
|
|
|
703
|
+
class FreeTrialDetails
|
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
705
|
+
|
|
706
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
707
|
+
end
|
|
708
|
+
|
|
691
709
|
class FullRefund
|
|
692
710
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
693
711
|
|
|
@@ -850,12 +868,24 @@ module Google
|
|
|
850
868
|
include Google::Apis::Core::JsonObjectSupport
|
|
851
869
|
end
|
|
852
870
|
|
|
871
|
+
class IntroductoryPriceDetails
|
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
873
|
+
|
|
874
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
875
|
+
end
|
|
876
|
+
|
|
853
877
|
class IntroductoryPriceInfo
|
|
854
878
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
855
879
|
|
|
856
880
|
include Google::Apis::Core::JsonObjectSupport
|
|
857
881
|
end
|
|
858
882
|
|
|
883
|
+
class ItemReplacement
|
|
884
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
885
|
+
|
|
886
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
887
|
+
end
|
|
888
|
+
|
|
859
889
|
class LanguageTargeting
|
|
860
890
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
861
891
|
|
|
@@ -982,6 +1012,12 @@ module Google
|
|
|
982
1012
|
include Google::Apis::Core::JsonObjectSupport
|
|
983
1013
|
end
|
|
984
1014
|
|
|
1015
|
+
class OfferPhaseDetails
|
|
1016
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1017
|
+
|
|
1018
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1019
|
+
end
|
|
1020
|
+
|
|
985
1021
|
class OfferTag
|
|
986
1022
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
987
1023
|
|
|
@@ -1138,6 +1174,12 @@ module Google
|
|
|
1138
1174
|
include Google::Apis::Core::JsonObjectSupport
|
|
1139
1175
|
end
|
|
1140
1176
|
|
|
1177
|
+
class OutOfAppPurchaseContext
|
|
1178
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1179
|
+
|
|
1180
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1181
|
+
end
|
|
1182
|
+
|
|
1141
1183
|
class PageInfo
|
|
1142
1184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1143
1185
|
|
|
@@ -1252,6 +1294,12 @@ module Google
|
|
|
1252
1294
|
include Google::Apis::Core::JsonObjectSupport
|
|
1253
1295
|
end
|
|
1254
1296
|
|
|
1297
|
+
class ProrationPeriodDetails
|
|
1298
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1299
|
+
|
|
1300
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1301
|
+
end
|
|
1302
|
+
|
|
1255
1303
|
class PurchaseOptionTaxAndComplianceSettings
|
|
1256
1304
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1257
1305
|
|
|
@@ -2165,6 +2213,12 @@ module Google
|
|
|
2165
2213
|
end
|
|
2166
2214
|
end
|
|
2167
2215
|
|
|
2216
|
+
class BaseDetails
|
|
2217
|
+
# @private
|
|
2218
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2219
|
+
end
|
|
2220
|
+
end
|
|
2221
|
+
|
|
2168
2222
|
class BasePlan
|
|
2169
2223
|
# @private
|
|
2170
2224
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2845,6 +2899,14 @@ module Google
|
|
|
2845
2899
|
end
|
|
2846
2900
|
end
|
|
2847
2901
|
|
|
2902
|
+
class ExternalAccountIds
|
|
2903
|
+
# @private
|
|
2904
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2905
|
+
property :obfuscated_account_id, as: 'obfuscatedAccountId'
|
|
2906
|
+
property :obfuscated_profile_id, as: 'obfuscatedProfileId'
|
|
2907
|
+
end
|
|
2908
|
+
end
|
|
2909
|
+
|
|
2848
2910
|
class ExternalSubscription
|
|
2849
2911
|
# @private
|
|
2850
2912
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2916,6 +2978,12 @@ module Google
|
|
|
2916
2978
|
end
|
|
2917
2979
|
end
|
|
2918
2980
|
|
|
2981
|
+
class FreeTrialDetails
|
|
2982
|
+
# @private
|
|
2983
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2984
|
+
end
|
|
2985
|
+
end
|
|
2986
|
+
|
|
2919
2987
|
class FullRefund
|
|
2920
2988
|
# @private
|
|
2921
2989
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3190,6 +3258,12 @@ module Google
|
|
|
3190
3258
|
end
|
|
3191
3259
|
end
|
|
3192
3260
|
|
|
3261
|
+
class IntroductoryPriceDetails
|
|
3262
|
+
# @private
|
|
3263
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3264
|
+
end
|
|
3265
|
+
end
|
|
3266
|
+
|
|
3193
3267
|
class IntroductoryPriceInfo
|
|
3194
3268
|
# @private
|
|
3195
3269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3200,6 +3274,16 @@ module Google
|
|
|
3200
3274
|
end
|
|
3201
3275
|
end
|
|
3202
3276
|
|
|
3277
|
+
class ItemReplacement
|
|
3278
|
+
# @private
|
|
3279
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3280
|
+
property :base_plan_id, as: 'basePlanId'
|
|
3281
|
+
property :offer_id, as: 'offerId'
|
|
3282
|
+
property :product_id, as: 'productId'
|
|
3283
|
+
property :replacement_mode, as: 'replacementMode'
|
|
3284
|
+
end
|
|
3285
|
+
end
|
|
3286
|
+
|
|
3203
3287
|
class LanguageTargeting
|
|
3204
3288
|
# @private
|
|
3205
3289
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3408,6 +3492,20 @@ module Google
|
|
|
3408
3492
|
end
|
|
3409
3493
|
end
|
|
3410
3494
|
|
|
3495
|
+
class OfferPhaseDetails
|
|
3496
|
+
# @private
|
|
3497
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3498
|
+
property :base_details, as: 'baseDetails', class: Google::Apis::AndroidpublisherV3::BaseDetails, decorator: Google::Apis::AndroidpublisherV3::BaseDetails::Representation
|
|
3499
|
+
|
|
3500
|
+
property :free_trial_details, as: 'freeTrialDetails', class: Google::Apis::AndroidpublisherV3::FreeTrialDetails, decorator: Google::Apis::AndroidpublisherV3::FreeTrialDetails::Representation
|
|
3501
|
+
|
|
3502
|
+
property :introductory_price_details, as: 'introductoryPriceDetails', class: Google::Apis::AndroidpublisherV3::IntroductoryPriceDetails, decorator: Google::Apis::AndroidpublisherV3::IntroductoryPriceDetails::Representation
|
|
3503
|
+
|
|
3504
|
+
property :proration_period_details, as: 'prorationPeriodDetails', class: Google::Apis::AndroidpublisherV3::ProrationPeriodDetails, decorator: Google::Apis::AndroidpublisherV3::ProrationPeriodDetails::Representation
|
|
3505
|
+
|
|
3506
|
+
end
|
|
3507
|
+
end
|
|
3508
|
+
|
|
3411
3509
|
class OfferTag
|
|
3412
3510
|
# @private
|
|
3413
3511
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3696,6 +3794,15 @@ module Google
|
|
|
3696
3794
|
end
|
|
3697
3795
|
end
|
|
3698
3796
|
|
|
3797
|
+
class OutOfAppPurchaseContext
|
|
3798
|
+
# @private
|
|
3799
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3800
|
+
property :expired_external_account_identifiers, as: 'expiredExternalAccountIdentifiers', class: Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers, decorator: Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers::Representation
|
|
3801
|
+
|
|
3802
|
+
property :expired_purchase_token, as: 'expiredPurchaseToken'
|
|
3803
|
+
end
|
|
3804
|
+
end
|
|
3805
|
+
|
|
3699
3806
|
class PageInfo
|
|
3700
3807
|
# @private
|
|
3701
3808
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3881,6 +3988,14 @@ module Google
|
|
|
3881
3988
|
end
|
|
3882
3989
|
end
|
|
3883
3990
|
|
|
3991
|
+
class ProrationPeriodDetails
|
|
3992
|
+
# @private
|
|
3993
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3994
|
+
property :linked_order_id, as: 'linkedOrderId'
|
|
3995
|
+
property :original_offer_phase, as: 'originalOfferPhase'
|
|
3996
|
+
end
|
|
3997
|
+
end
|
|
3998
|
+
|
|
3884
3999
|
class PurchaseOptionTaxAndComplianceSettings
|
|
3885
4000
|
# @private
|
|
3886
4001
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4293,6 +4408,8 @@ module Google
|
|
|
4293
4408
|
property :base_plan_id, as: 'basePlanId'
|
|
4294
4409
|
property :offer_id, as: 'offerId'
|
|
4295
4410
|
property :offer_phase, as: 'offerPhase'
|
|
4411
|
+
property :offer_phase_details, as: 'offerPhaseDetails', class: Google::Apis::AndroidpublisherV3::OfferPhaseDetails, decorator: Google::Apis::AndroidpublisherV3::OfferPhaseDetails::Representation
|
|
4412
|
+
|
|
4296
4413
|
property :service_period_end_time, as: 'servicePeriodEndTime'
|
|
4297
4414
|
property :service_period_start_time, as: 'servicePeriodStartTime'
|
|
4298
4415
|
end
|
|
@@ -4419,6 +4536,8 @@ module Google
|
|
|
4419
4536
|
property :deferred_item_replacement, as: 'deferredItemReplacement', class: Google::Apis::AndroidpublisherV3::DeferredItemReplacement, decorator: Google::Apis::AndroidpublisherV3::DeferredItemReplacement::Representation
|
|
4420
4537
|
|
|
4421
4538
|
property :expiry_time, as: 'expiryTime'
|
|
4539
|
+
property :item_replacement, as: 'itemReplacement', class: Google::Apis::AndroidpublisherV3::ItemReplacement, decorator: Google::Apis::AndroidpublisherV3::ItemReplacement::Representation
|
|
4540
|
+
|
|
4422
4541
|
property :latest_successful_order_id, as: 'latestSuccessfulOrderId'
|
|
4423
4542
|
property :offer_details, as: 'offerDetails', class: Google::Apis::AndroidpublisherV3::OfferDetails, decorator: Google::Apis::AndroidpublisherV3::OfferDetails::Representation
|
|
4424
4543
|
|
|
@@ -4443,6 +4562,8 @@ module Google
|
|
|
4443
4562
|
collection :line_items, as: 'lineItems', class: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem, decorator: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem::Representation
|
|
4444
4563
|
|
|
4445
4564
|
property :linked_purchase_token, as: 'linkedPurchaseToken'
|
|
4565
|
+
property :out_of_app_purchase_context, as: 'outOfAppPurchaseContext', class: Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext, decorator: Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext::Representation
|
|
4566
|
+
|
|
4446
4567
|
property :paused_state_context, as: 'pausedStateContext', class: Google::Apis::AndroidpublisherV3::PausedStateContext, decorator: Google::Apis::AndroidpublisherV3::PausedStateContext::Representation
|
|
4447
4568
|
|
|
4448
4569
|
property :region_code, as: 'regionCode'
|
|
@@ -4459,6 +4580,8 @@ module Google
|
|
|
4459
4580
|
# @private
|
|
4460
4581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4461
4582
|
property :developer_payload, as: 'developerPayload'
|
|
4583
|
+
property :external_account_ids, as: 'externalAccountIds', class: Google::Apis::AndroidpublisherV3::ExternalAccountIds, decorator: Google::Apis::AndroidpublisherV3::ExternalAccountIds::Representation
|
|
4584
|
+
|
|
4462
4585
|
end
|
|
4463
4586
|
end
|
|
4464
4587
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.89.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.89.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|