google-apis-androidpublisher_v3 0.88.0 → 0.90.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: 0fde1624bc3aec734403df3f66d7036c28181d24b38552a9a0e3f8258f13e69a
|
|
4
|
+
data.tar.gz: ffb1bf94a65a846f70cf9088c316a7454bf403902b193f1d6446a8acaeb4e2ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a5f12b42a3cd59a0f4b25650c04e44a386fb3fab7ca5d982e495b04d0171a9366254d37b7202de9ad9fc3a4b0f3cccd9674602e55164c54623a30b1553b48ac
|
|
7
|
+
data.tar.gz: bb799d1a257d94ff03b672fa320195eca64bc72b6dd50bd7b4936d9d31b7883bd385b04f5bf6f6a31966cd10443c494b25a98c3911f600e181b6f584ca7b8312
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
|
2
2
|
|
|
3
|
+
### v0.90.0 (2025-11-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251124
|
|
6
|
+
|
|
7
|
+
### v0.89.0 (2025-11-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251119
|
|
10
|
+
|
|
3
11
|
### v0.88.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251028
|
|
@@ -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
|
|
@@ -5561,6 +5726,11 @@ module Google
|
|
|
5561
5726
|
# @return [String]
|
|
5562
5727
|
attr_accessor :purchase_token
|
|
5563
5728
|
|
|
5729
|
+
# The originating sales channel of the order.
|
|
5730
|
+
# Corresponds to the JSON property `salesChannel`
|
|
5731
|
+
# @return [String]
|
|
5732
|
+
attr_accessor :sales_channel
|
|
5733
|
+
|
|
5564
5734
|
# The state of the order.
|
|
5565
5735
|
# Corresponds to the JSON property `state`
|
|
5566
5736
|
# @return [String]
|
|
@@ -5592,6 +5762,7 @@ module Google
|
|
|
5592
5762
|
@order_id = args[:order_id] if args.key?(:order_id)
|
|
5593
5763
|
@points_details = args[:points_details] if args.key?(:points_details)
|
|
5594
5764
|
@purchase_token = args[:purchase_token] if args.key?(:purchase_token)
|
|
5765
|
+
@sales_channel = args[:sales_channel] if args.key?(:sales_channel)
|
|
5595
5766
|
@state = args[:state] if args.key?(:state)
|
|
5596
5767
|
@tax = args[:tax] if args.key?(:tax)
|
|
5597
5768
|
@total = args[:total] if args.key?(:total)
|
|
@@ -5810,6 +5981,34 @@ module Google
|
|
|
5810
5981
|
end
|
|
5811
5982
|
end
|
|
5812
5983
|
|
|
5984
|
+
# Information specific to an out of app purchase.
|
|
5985
|
+
class OutOfAppPurchaseContext
|
|
5986
|
+
include Google::Apis::Core::Hashable
|
|
5987
|
+
|
|
5988
|
+
# User account identifier in the third-party service.
|
|
5989
|
+
# Corresponds to the JSON property `expiredExternalAccountIdentifiers`
|
|
5990
|
+
# @return [Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers]
|
|
5991
|
+
attr_accessor :expired_external_account_identifiers
|
|
5992
|
+
|
|
5993
|
+
# The purchase token of the last expired subscription. This purchase token must
|
|
5994
|
+
# only be used to help identify the user if the link between the purchaseToken
|
|
5995
|
+
# and user is stored in your database. This cannot be used to call the Google
|
|
5996
|
+
# Developer API if it has been more than 60 days since expiry.
|
|
5997
|
+
# Corresponds to the JSON property `expiredPurchaseToken`
|
|
5998
|
+
# @return [String]
|
|
5999
|
+
attr_accessor :expired_purchase_token
|
|
6000
|
+
|
|
6001
|
+
def initialize(**args)
|
|
6002
|
+
update!(**args)
|
|
6003
|
+
end
|
|
6004
|
+
|
|
6005
|
+
# Update properties of this object
|
|
6006
|
+
def update!(**args)
|
|
6007
|
+
@expired_external_account_identifiers = args[:expired_external_account_identifiers] if args.key?(:expired_external_account_identifiers)
|
|
6008
|
+
@expired_purchase_token = args[:expired_purchase_token] if args.key?(:expired_purchase_token)
|
|
6009
|
+
end
|
|
6010
|
+
end
|
|
6011
|
+
|
|
5813
6012
|
# Information about the current page. List operations that supports paging
|
|
5814
6013
|
# return only one "page" of results. This protocol buffer message describes the
|
|
5815
6014
|
# page that has been returned.
|
|
@@ -6479,6 +6678,45 @@ module Google
|
|
|
6479
6678
|
end
|
|
6480
6679
|
end
|
|
6481
6680
|
|
|
6681
|
+
# Details of a proration period. A proration period can be a period calculated
|
|
6682
|
+
# during a plan change to cover existing entitlements (For more information, see
|
|
6683
|
+
# [Allow users to upgrade, downgrade, or change their subscription](https://
|
|
6684
|
+
# developer.android.com/google/play/billing/subscriptions#allow-users-change),
|
|
6685
|
+
# or a prorated period to align add-on renewal dates with the base (For more
|
|
6686
|
+
# information, see [Rules applicable for items in the purchase](https://
|
|
6687
|
+
# developer.android.com/google/play/billing/subscription-with-addons#rules-base-
|
|
6688
|
+
# addons)).
|
|
6689
|
+
class ProrationPeriodDetails
|
|
6690
|
+
include Google::Apis::Core::Hashable
|
|
6691
|
+
|
|
6692
|
+
# The last order id of the original subscription purchase prior to the plan
|
|
6693
|
+
# change. This is only populated if this proration period is from an ugrade/
|
|
6694
|
+
# downgrade from a previous subscription and carries the remaining offer phase
|
|
6695
|
+
# from the linked order of the previous subscription.
|
|
6696
|
+
# Corresponds to the JSON property `linkedOrderId`
|
|
6697
|
+
# @return [String]
|
|
6698
|
+
attr_accessor :linked_order_id
|
|
6699
|
+
|
|
6700
|
+
# Represent the original offer phase from the purchased the line item if the
|
|
6701
|
+
# proration period contains any of them. For example, a proration period from
|
|
6702
|
+
# CHARGE_FULL_PRICE plan change may merge the 1st offer phase of the
|
|
6703
|
+
# subscription offer of the new product user purchased. In this case, the
|
|
6704
|
+
# original offer phase will be set here.
|
|
6705
|
+
# Corresponds to the JSON property `originalOfferPhase`
|
|
6706
|
+
# @return [String]
|
|
6707
|
+
attr_accessor :original_offer_phase
|
|
6708
|
+
|
|
6709
|
+
def initialize(**args)
|
|
6710
|
+
update!(**args)
|
|
6711
|
+
end
|
|
6712
|
+
|
|
6713
|
+
# Update properties of this object
|
|
6714
|
+
def update!(**args)
|
|
6715
|
+
@linked_order_id = args[:linked_order_id] if args.key?(:linked_order_id)
|
|
6716
|
+
@original_offer_phase = args[:original_offer_phase] if args.key?(:original_offer_phase)
|
|
6717
|
+
end
|
|
6718
|
+
end
|
|
6719
|
+
|
|
6482
6720
|
# Details about taxation, Google Play policy and legal compliance for one-time
|
|
6483
6721
|
# product purchase options.
|
|
6484
6722
|
class PurchaseOptionTaxAndComplianceSettings
|
|
@@ -7758,11 +7996,17 @@ module Google
|
|
|
7758
7996
|
# @return [String]
|
|
7759
7997
|
attr_accessor :offer_id
|
|
7760
7998
|
|
|
7761
|
-
# The pricing phase for the billing period funded by this order.
|
|
7999
|
+
# The pricing phase for the billing period funded by this order. Deprecated. Use
|
|
8000
|
+
# offer_phase_details instead.
|
|
7762
8001
|
# Corresponds to the JSON property `offerPhase`
|
|
7763
8002
|
# @return [String]
|
|
7764
8003
|
attr_accessor :offer_phase
|
|
7765
8004
|
|
|
8005
|
+
# Details of a pricing phase for the entitlement period funded by this order.
|
|
8006
|
+
# Corresponds to the JSON property `offerPhaseDetails`
|
|
8007
|
+
# @return [Google::Apis::AndroidpublisherV3::OfferPhaseDetails]
|
|
8008
|
+
attr_accessor :offer_phase_details
|
|
8009
|
+
|
|
7766
8010
|
# The end of the billing period funded by this order. This is a snapshot of the
|
|
7767
8011
|
# billing/service period end time at the moment the order was processed, and
|
|
7768
8012
|
# should be used only for accounting. To get the current end time of the
|
|
@@ -7787,6 +8031,7 @@ module Google
|
|
|
7787
8031
|
@base_plan_id = args[:base_plan_id] if args.key?(:base_plan_id)
|
|
7788
8032
|
@offer_id = args[:offer_id] if args.key?(:offer_id)
|
|
7789
8033
|
@offer_phase = args[:offer_phase] if args.key?(:offer_phase)
|
|
8034
|
+
@offer_phase_details = args[:offer_phase_details] if args.key?(:offer_phase_details)
|
|
7790
8035
|
@service_period_end_time = args[:service_period_end_time] if args.key?(:service_period_end_time)
|
|
7791
8036
|
@service_period_start_time = args[:service_period_start_time] if args.key?(:service_period_start_time)
|
|
7792
8037
|
end
|
|
@@ -8324,6 +8569,11 @@ module Google
|
|
|
8324
8569
|
# @return [String]
|
|
8325
8570
|
attr_accessor :expiry_time
|
|
8326
8571
|
|
|
8572
|
+
# Details about a subscription line item that is being replaced.
|
|
8573
|
+
# Corresponds to the JSON property `itemReplacement`
|
|
8574
|
+
# @return [Google::Apis::AndroidpublisherV3::ItemReplacement]
|
|
8575
|
+
attr_accessor :item_replacement
|
|
8576
|
+
|
|
8327
8577
|
# The order id of the latest successful order associated with this item. Not
|
|
8328
8578
|
# present if the item is not owned by the user yet (e.g. the item being deferred
|
|
8329
8579
|
# replaced to).
|
|
@@ -8361,6 +8611,7 @@ module Google
|
|
|
8361
8611
|
@deferred_item_removal = args[:deferred_item_removal] if args.key?(:deferred_item_removal)
|
|
8362
8612
|
@deferred_item_replacement = args[:deferred_item_replacement] if args.key?(:deferred_item_replacement)
|
|
8363
8613
|
@expiry_time = args[:expiry_time] if args.key?(:expiry_time)
|
|
8614
|
+
@item_replacement = args[:item_replacement] if args.key?(:item_replacement)
|
|
8364
8615
|
@latest_successful_order_id = args[:latest_successful_order_id] if args.key?(:latest_successful_order_id)
|
|
8365
8616
|
@offer_details = args[:offer_details] if args.key?(:offer_details)
|
|
8366
8617
|
@prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
|
|
@@ -8420,6 +8671,11 @@ module Google
|
|
|
8420
8671
|
# @return [String]
|
|
8421
8672
|
attr_accessor :linked_purchase_token
|
|
8422
8673
|
|
|
8674
|
+
# Information specific to an out of app purchase.
|
|
8675
|
+
# Corresponds to the JSON property `outOfAppPurchaseContext`
|
|
8676
|
+
# @return [Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext]
|
|
8677
|
+
attr_accessor :out_of_app_purchase_context
|
|
8678
|
+
|
|
8423
8679
|
# Information specific to a subscription in paused state.
|
|
8424
8680
|
# Corresponds to the JSON property `pausedStateContext`
|
|
8425
8681
|
# @return [Google::Apis::AndroidpublisherV3::PausedStateContext]
|
|
@@ -8465,6 +8721,7 @@ module Google
|
|
|
8465
8721
|
@latest_order_id = args[:latest_order_id] if args.key?(:latest_order_id)
|
|
8466
8722
|
@line_items = args[:line_items] if args.key?(:line_items)
|
|
8467
8723
|
@linked_purchase_token = args[:linked_purchase_token] if args.key?(:linked_purchase_token)
|
|
8724
|
+
@out_of_app_purchase_context = args[:out_of_app_purchase_context] if args.key?(:out_of_app_purchase_context)
|
|
8468
8725
|
@paused_state_context = args[:paused_state_context] if args.key?(:paused_state_context)
|
|
8469
8726
|
@region_code = args[:region_code] if args.key?(:region_code)
|
|
8470
8727
|
@start_time = args[:start_time] if args.key?(:start_time)
|
|
@@ -8483,6 +8740,11 @@ module Google
|
|
|
8483
8740
|
# @return [String]
|
|
8484
8741
|
attr_accessor :developer_payload
|
|
8485
8742
|
|
|
8743
|
+
# User account identifier in your app.
|
|
8744
|
+
# Corresponds to the JSON property `externalAccountIds`
|
|
8745
|
+
# @return [Google::Apis::AndroidpublisherV3::ExternalAccountIds]
|
|
8746
|
+
attr_accessor :external_account_ids
|
|
8747
|
+
|
|
8486
8748
|
def initialize(**args)
|
|
8487
8749
|
update!(**args)
|
|
8488
8750
|
end
|
|
@@ -8490,6 +8752,7 @@ module Google
|
|
|
8490
8752
|
# Update properties of this object
|
|
8491
8753
|
def update!(**args)
|
|
8492
8754
|
@developer_payload = args[:developer_payload] if args.key?(:developer_payload)
|
|
8755
|
+
@external_account_ids = args[:external_account_ids] if args.key?(:external_account_ids)
|
|
8493
8756
|
end
|
|
8494
8757
|
end
|
|
8495
8758
|
|
|
@@ -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.90.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 = "20251124"
|
|
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
|
|
@@ -3614,6 +3712,7 @@ module Google
|
|
|
3614
3712
|
property :points_details, as: 'pointsDetails', class: Google::Apis::AndroidpublisherV3::PointsDetails, decorator: Google::Apis::AndroidpublisherV3::PointsDetails::Representation
|
|
3615
3713
|
|
|
3616
3714
|
property :purchase_token, as: 'purchaseToken'
|
|
3715
|
+
property :sales_channel, as: 'salesChannel'
|
|
3617
3716
|
property :state, as: 'state'
|
|
3618
3717
|
property :tax, as: 'tax', class: Google::Apis::AndroidpublisherV3::Money, decorator: Google::Apis::AndroidpublisherV3::Money::Representation
|
|
3619
3718
|
|
|
@@ -3696,6 +3795,15 @@ module Google
|
|
|
3696
3795
|
end
|
|
3697
3796
|
end
|
|
3698
3797
|
|
|
3798
|
+
class OutOfAppPurchaseContext
|
|
3799
|
+
# @private
|
|
3800
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3801
|
+
property :expired_external_account_identifiers, as: 'expiredExternalAccountIdentifiers', class: Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers, decorator: Google::Apis::AndroidpublisherV3::ExternalAccountIdentifiers::Representation
|
|
3802
|
+
|
|
3803
|
+
property :expired_purchase_token, as: 'expiredPurchaseToken'
|
|
3804
|
+
end
|
|
3805
|
+
end
|
|
3806
|
+
|
|
3699
3807
|
class PageInfo
|
|
3700
3808
|
# @private
|
|
3701
3809
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3881,6 +3989,14 @@ module Google
|
|
|
3881
3989
|
end
|
|
3882
3990
|
end
|
|
3883
3991
|
|
|
3992
|
+
class ProrationPeriodDetails
|
|
3993
|
+
# @private
|
|
3994
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3995
|
+
property :linked_order_id, as: 'linkedOrderId'
|
|
3996
|
+
property :original_offer_phase, as: 'originalOfferPhase'
|
|
3997
|
+
end
|
|
3998
|
+
end
|
|
3999
|
+
|
|
3884
4000
|
class PurchaseOptionTaxAndComplianceSettings
|
|
3885
4001
|
# @private
|
|
3886
4002
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4293,6 +4409,8 @@ module Google
|
|
|
4293
4409
|
property :base_plan_id, as: 'basePlanId'
|
|
4294
4410
|
property :offer_id, as: 'offerId'
|
|
4295
4411
|
property :offer_phase, as: 'offerPhase'
|
|
4412
|
+
property :offer_phase_details, as: 'offerPhaseDetails', class: Google::Apis::AndroidpublisherV3::OfferPhaseDetails, decorator: Google::Apis::AndroidpublisherV3::OfferPhaseDetails::Representation
|
|
4413
|
+
|
|
4296
4414
|
property :service_period_end_time, as: 'servicePeriodEndTime'
|
|
4297
4415
|
property :service_period_start_time, as: 'servicePeriodStartTime'
|
|
4298
4416
|
end
|
|
@@ -4419,6 +4537,8 @@ module Google
|
|
|
4419
4537
|
property :deferred_item_replacement, as: 'deferredItemReplacement', class: Google::Apis::AndroidpublisherV3::DeferredItemReplacement, decorator: Google::Apis::AndroidpublisherV3::DeferredItemReplacement::Representation
|
|
4420
4538
|
|
|
4421
4539
|
property :expiry_time, as: 'expiryTime'
|
|
4540
|
+
property :item_replacement, as: 'itemReplacement', class: Google::Apis::AndroidpublisherV3::ItemReplacement, decorator: Google::Apis::AndroidpublisherV3::ItemReplacement::Representation
|
|
4541
|
+
|
|
4422
4542
|
property :latest_successful_order_id, as: 'latestSuccessfulOrderId'
|
|
4423
4543
|
property :offer_details, as: 'offerDetails', class: Google::Apis::AndroidpublisherV3::OfferDetails, decorator: Google::Apis::AndroidpublisherV3::OfferDetails::Representation
|
|
4424
4544
|
|
|
@@ -4443,6 +4563,8 @@ module Google
|
|
|
4443
4563
|
collection :line_items, as: 'lineItems', class: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem, decorator: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem::Representation
|
|
4444
4564
|
|
|
4445
4565
|
property :linked_purchase_token, as: 'linkedPurchaseToken'
|
|
4566
|
+
property :out_of_app_purchase_context, as: 'outOfAppPurchaseContext', class: Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext, decorator: Google::Apis::AndroidpublisherV3::OutOfAppPurchaseContext::Representation
|
|
4567
|
+
|
|
4446
4568
|
property :paused_state_context, as: 'pausedStateContext', class: Google::Apis::AndroidpublisherV3::PausedStateContext, decorator: Google::Apis::AndroidpublisherV3::PausedStateContext::Representation
|
|
4447
4569
|
|
|
4448
4570
|
property :region_code, as: 'regionCode'
|
|
@@ -4459,6 +4581,8 @@ module Google
|
|
|
4459
4581
|
# @private
|
|
4460
4582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4461
4583
|
property :developer_payload, as: 'developerPayload'
|
|
4584
|
+
property :external_account_ids, as: 'externalAccountIds', class: Google::Apis::AndroidpublisherV3::ExternalAccountIds, decorator: Google::Apis::AndroidpublisherV3::ExternalAccountIds::Representation
|
|
4585
|
+
|
|
4462
4586
|
end
|
|
4463
4587
|
end
|
|
4464
4588
|
|
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.90.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.90.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:
|