google-apis-androidpublisher_v3 0.87.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: 18d5d7924d8274977797d65cf4e86d507032e311c0af13b0a730233f7a7a04c2
4
- data.tar.gz: dd4b1e3bd89c54d98af7ee16bc7b59ae859d19fe7ceb8fdb26d1521aa7506465
3
+ metadata.gz: d159600a30ce42999391dc91b8ccf0b1bb358663c807437f21670336884fc59c
4
+ data.tar.gz: c8c0afcb958276eb3a2477cb661b4639c7cb83d63344672e0d48eca6cbc68fa3
5
5
  SHA512:
6
- metadata.gz: 03d6e689222def188a99cb61b089ff7ca31593a1fdb41ce83c27217831f2872a885df57cab19eb06b440955e0cc91bfe88997cdb5c3771625e8d4223ab4514a6
7
- data.tar.gz: d11a3a9aad55f579df99c382ffb5f0a74c158dc1c480cf6b5c5e5d47223ea02d53a76e2b46cbed3a1c23fe8a18218d3bcd5699ad7470a6729b3bd7eef308ef6c
6
+ metadata.gz: 6f94f7dd69bf49b7c9d0be500b9a8ad425cf81ad411084a205de6c4b2c524064376f0bac6fac681ad167b29755fadcc15cd502dda4673c50975a3d5b8524c802
7
+ data.tar.gz: 77f1a48075d9a1e07480da8bab98ab419a76b0ca5c96c7b89e77de6db9ca7e8a688954ab2191017cda5a11d75417e3148bce9aef089e79a68f5c2ec74a72585f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-androidpublisher_v3
2
2
 
3
+ ### v0.89.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251119
6
+
7
+ ### v0.88.0 (2025-11-02)
8
+
9
+ * Regenerated from discovery document revision 20251028
10
+
3
11
  ### v0.87.0 (2025-09-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20250904
@@ -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
@@ -5452,6 +5617,11 @@ module Google
5452
5617
  # @return [String]
5453
5618
  attr_accessor :offer_id
5454
5619
 
5620
+ # Details of a pre-order purchase.
5621
+ # Corresponds to the JSON property `preorderDetails`
5622
+ # @return [Google::Apis::AndroidpublisherV3::PreorderDetails]
5623
+ attr_accessor :preorder_details
5624
+
5455
5625
  # ID of the purchase option. This field is set for both purchase options and
5456
5626
  # variant offers. For purchase options, this ID identifies the purchase option
5457
5627
  # itself. For variant offers, this ID refers to the associated purchase option,
@@ -5477,6 +5647,7 @@ module Google
5477
5647
  # Update properties of this object
5478
5648
  def update!(**args)
5479
5649
  @offer_id = args[:offer_id] if args.key?(:offer_id)
5650
+ @preorder_details = args[:preorder_details] if args.key?(:preorder_details)
5480
5651
  @purchase_option_id = args[:purchase_option_id] if args.key?(:purchase_option_id)
5481
5652
  @quantity = args[:quantity] if args.key?(:quantity)
5482
5653
  @rental_details = args[:rental_details] if args.key?(:rental_details)
@@ -5804,6 +5975,34 @@ module Google
5804
5975
  end
5805
5976
  end
5806
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
+
5807
6006
  # Information about the current page. List operations that supports paging
5808
6007
  # return only one "page" of results. This protocol buffer message describes the
5809
6008
  # page that has been returned.
@@ -5992,6 +6191,38 @@ module Google
5992
6191
  end
5993
6192
  end
5994
6193
 
6194
+ # Details of a pre-order purchase.
6195
+ class PreorderDetails
6196
+ include Google::Apis::Core::Hashable
6197
+
6198
+ def initialize(**args)
6199
+ update!(**args)
6200
+ end
6201
+
6202
+ # Update properties of this object
6203
+ def update!(**args)
6204
+ end
6205
+ end
6206
+
6207
+ # Offer details information related to a preorder line item.
6208
+ class PreorderOfferDetails
6209
+ include Google::Apis::Core::Hashable
6210
+
6211
+ # The time when a preordered item is released for a preorder purchase.
6212
+ # Corresponds to the JSON property `preorderReleaseTime`
6213
+ # @return [String]
6214
+ attr_accessor :preorder_release_time
6215
+
6216
+ def initialize(**args)
6217
+ update!(**args)
6218
+ end
6219
+
6220
+ # Update properties of this object
6221
+ def update!(**args)
6222
+ @preorder_release_time = args[:preorder_release_time] if args.key?(:preorder_release_time)
6223
+ end
6224
+ end
6225
+
5995
6226
  # Represents a base plan that does not automatically renew at the end of the
5996
6227
  # base plan, and must be manually renewed by the user.
5997
6228
  class PrepaidBasePlanType
@@ -6168,6 +6399,11 @@ module Google
6168
6399
  # @return [String]
6169
6400
  attr_accessor :offer_token
6170
6401
 
6402
+ # Offer details information related to a preorder line item.
6403
+ # Corresponds to the JSON property `preorderOfferDetails`
6404
+ # @return [Google::Apis::AndroidpublisherV3::PreorderOfferDetails]
6405
+ attr_accessor :preorder_offer_details
6406
+
6171
6407
  # The purchase option ID.
6172
6408
  # Corresponds to the JSON property `purchaseOptionId`
6173
6409
  # @return [String]
@@ -6199,6 +6435,7 @@ module Google
6199
6435
  @offer_id = args[:offer_id] if args.key?(:offer_id)
6200
6436
  @offer_tags = args[:offer_tags] if args.key?(:offer_tags)
6201
6437
  @offer_token = args[:offer_token] if args.key?(:offer_token)
6438
+ @preorder_offer_details = args[:preorder_offer_details] if args.key?(:preorder_offer_details)
6202
6439
  @purchase_option_id = args[:purchase_option_id] if args.key?(:purchase_option_id)
6203
6440
  @quantity = args[:quantity] if args.key?(:quantity)
6204
6441
  @refundable_quantity = args[:refundable_quantity] if args.key?(:refundable_quantity)
@@ -6435,6 +6672,45 @@ module Google
6435
6672
  end
6436
6673
  end
6437
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
+
6438
6714
  # Details about taxation, Google Play policy and legal compliance for one-time
6439
6715
  # product purchase options.
6440
6716
  class PurchaseOptionTaxAndComplianceSettings
@@ -7714,11 +7990,17 @@ module Google
7714
7990
  # @return [String]
7715
7991
  attr_accessor :offer_id
7716
7992
 
7717
- # 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.
7718
7995
  # Corresponds to the JSON property `offerPhase`
7719
7996
  # @return [String]
7720
7997
  attr_accessor :offer_phase
7721
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
+
7722
8004
  # The end of the billing period funded by this order. This is a snapshot of the
7723
8005
  # billing/service period end time at the moment the order was processed, and
7724
8006
  # should be used only for accounting. To get the current end time of the
@@ -7743,6 +8025,7 @@ module Google
7743
8025
  @base_plan_id = args[:base_plan_id] if args.key?(:base_plan_id)
7744
8026
  @offer_id = args[:offer_id] if args.key?(:offer_id)
7745
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)
7746
8029
  @service_period_end_time = args[:service_period_end_time] if args.key?(:service_period_end_time)
7747
8030
  @service_period_start_time = args[:service_period_start_time] if args.key?(:service_period_start_time)
7748
8031
  end
@@ -8280,6 +8563,11 @@ module Google
8280
8563
  # @return [String]
8281
8564
  attr_accessor :expiry_time
8282
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
+
8283
8571
  # The order id of the latest successful order associated with this item. Not
8284
8572
  # present if the item is not owned by the user yet (e.g. the item being deferred
8285
8573
  # replaced to).
@@ -8317,6 +8605,7 @@ module Google
8317
8605
  @deferred_item_removal = args[:deferred_item_removal] if args.key?(:deferred_item_removal)
8318
8606
  @deferred_item_replacement = args[:deferred_item_replacement] if args.key?(:deferred_item_replacement)
8319
8607
  @expiry_time = args[:expiry_time] if args.key?(:expiry_time)
8608
+ @item_replacement = args[:item_replacement] if args.key?(:item_replacement)
8320
8609
  @latest_successful_order_id = args[:latest_successful_order_id] if args.key?(:latest_successful_order_id)
8321
8610
  @offer_details = args[:offer_details] if args.key?(:offer_details)
8322
8611
  @prepaid_plan = args[:prepaid_plan] if args.key?(:prepaid_plan)
@@ -8376,6 +8665,11 @@ module Google
8376
8665
  # @return [String]
8377
8666
  attr_accessor :linked_purchase_token
8378
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
+
8379
8673
  # Information specific to a subscription in paused state.
8380
8674
  # Corresponds to the JSON property `pausedStateContext`
8381
8675
  # @return [Google::Apis::AndroidpublisherV3::PausedStateContext]
@@ -8421,6 +8715,7 @@ module Google
8421
8715
  @latest_order_id = args[:latest_order_id] if args.key?(:latest_order_id)
8422
8716
  @line_items = args[:line_items] if args.key?(:line_items)
8423
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)
8424
8719
  @paused_state_context = args[:paused_state_context] if args.key?(:paused_state_context)
8425
8720
  @region_code = args[:region_code] if args.key?(:region_code)
8426
8721
  @start_time = args[:start_time] if args.key?(:start_time)
@@ -8439,6 +8734,11 @@ module Google
8439
8734
  # @return [String]
8440
8735
  attr_accessor :developer_payload
8441
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
+
8442
8742
  def initialize(**args)
8443
8743
  update!(**args)
8444
8744
  end
@@ -8446,6 +8746,7 @@ module Google
8446
8746
  # Update properties of this object
8447
8747
  def update!(**args)
8448
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)
8449
8750
  end
8450
8751
  end
8451
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.87.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 = "20250904"
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
 
@@ -1180,6 +1222,18 @@ module Google
1180
1222
  include Google::Apis::Core::JsonObjectSupport
1181
1223
  end
1182
1224
 
1225
+ class PreorderDetails
1226
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1227
+
1228
+ include Google::Apis::Core::JsonObjectSupport
1229
+ end
1230
+
1231
+ class PreorderOfferDetails
1232
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1233
+
1234
+ include Google::Apis::Core::JsonObjectSupport
1235
+ end
1236
+
1183
1237
  class PrepaidBasePlanType
1184
1238
  class Representation < Google::Apis::Core::JsonRepresentation; end
1185
1239
 
@@ -1240,6 +1294,12 @@ module Google
1240
1294
  include Google::Apis::Core::JsonObjectSupport
1241
1295
  end
1242
1296
 
1297
+ class ProrationPeriodDetails
1298
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1299
+
1300
+ include Google::Apis::Core::JsonObjectSupport
1301
+ end
1302
+
1243
1303
  class PurchaseOptionTaxAndComplianceSettings
1244
1304
  class Representation < Google::Apis::Core::JsonRepresentation; end
1245
1305
 
@@ -2153,6 +2213,12 @@ module Google
2153
2213
  end
2154
2214
  end
2155
2215
 
2216
+ class BaseDetails
2217
+ # @private
2218
+ class Representation < Google::Apis::Core::JsonRepresentation
2219
+ end
2220
+ end
2221
+
2156
2222
  class BasePlan
2157
2223
  # @private
2158
2224
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2833,6 +2899,14 @@ module Google
2833
2899
  end
2834
2900
  end
2835
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
+
2836
2910
  class ExternalSubscription
2837
2911
  # @private
2838
2912
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2904,6 +2978,12 @@ module Google
2904
2978
  end
2905
2979
  end
2906
2980
 
2981
+ class FreeTrialDetails
2982
+ # @private
2983
+ class Representation < Google::Apis::Core::JsonRepresentation
2984
+ end
2985
+ end
2986
+
2907
2987
  class FullRefund
2908
2988
  # @private
2909
2989
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3178,6 +3258,12 @@ module Google
3178
3258
  end
3179
3259
  end
3180
3260
 
3261
+ class IntroductoryPriceDetails
3262
+ # @private
3263
+ class Representation < Google::Apis::Core::JsonRepresentation
3264
+ end
3265
+ end
3266
+
3181
3267
  class IntroductoryPriceInfo
3182
3268
  # @private
3183
3269
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3188,6 +3274,16 @@ module Google
3188
3274
  end
3189
3275
  end
3190
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
+
3191
3287
  class LanguageTargeting
3192
3288
  # @private
3193
3289
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3396,6 +3492,20 @@ module Google
3396
3492
  end
3397
3493
  end
3398
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
+
3399
3509
  class OfferTag
3400
3510
  # @private
3401
3511
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3574,6 +3684,8 @@ module Google
3574
3684
  # @private
3575
3685
  class Representation < Google::Apis::Core::JsonRepresentation
3576
3686
  property :offer_id, as: 'offerId'
3687
+ property :preorder_details, as: 'preorderDetails', class: Google::Apis::AndroidpublisherV3::PreorderDetails, decorator: Google::Apis::AndroidpublisherV3::PreorderDetails::Representation
3688
+
3577
3689
  property :purchase_option_id, as: 'purchaseOptionId'
3578
3690
  property :quantity, as: 'quantity'
3579
3691
  property :rental_details, as: 'rentalDetails', class: Google::Apis::AndroidpublisherV3::RentalDetails, decorator: Google::Apis::AndroidpublisherV3::RentalDetails::Representation
@@ -3682,6 +3794,15 @@ module Google
3682
3794
  end
3683
3795
  end
3684
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
+
3685
3806
  class PageInfo
3686
3807
  # @private
3687
3808
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3741,6 +3862,19 @@ module Google
3741
3862
  end
3742
3863
  end
3743
3864
 
3865
+ class PreorderDetails
3866
+ # @private
3867
+ class Representation < Google::Apis::Core::JsonRepresentation
3868
+ end
3869
+ end
3870
+
3871
+ class PreorderOfferDetails
3872
+ # @private
3873
+ class Representation < Google::Apis::Core::JsonRepresentation
3874
+ property :preorder_release_time, as: 'preorderReleaseTime'
3875
+ end
3876
+ end
3877
+
3744
3878
  class PrepaidBasePlanType
3745
3879
  # @private
3746
3880
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3797,6 +3931,8 @@ module Google
3797
3931
  property :offer_id, as: 'offerId'
3798
3932
  collection :offer_tags, as: 'offerTags'
3799
3933
  property :offer_token, as: 'offerToken'
3934
+ property :preorder_offer_details, as: 'preorderOfferDetails', class: Google::Apis::AndroidpublisherV3::PreorderOfferDetails, decorator: Google::Apis::AndroidpublisherV3::PreorderOfferDetails::Representation
3935
+
3800
3936
  property :purchase_option_id, as: 'purchaseOptionId'
3801
3937
  property :quantity, as: 'quantity'
3802
3938
  property :refundable_quantity, as: 'refundableQuantity'
@@ -3852,6 +3988,14 @@ module Google
3852
3988
  end
3853
3989
  end
3854
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
+
3855
3999
  class PurchaseOptionTaxAndComplianceSettings
3856
4000
  # @private
3857
4001
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4264,6 +4408,8 @@ module Google
4264
4408
  property :base_plan_id, as: 'basePlanId'
4265
4409
  property :offer_id, as: 'offerId'
4266
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
+
4267
4413
  property :service_period_end_time, as: 'servicePeriodEndTime'
4268
4414
  property :service_period_start_time, as: 'servicePeriodStartTime'
4269
4415
  end
@@ -4390,6 +4536,8 @@ module Google
4390
4536
  property :deferred_item_replacement, as: 'deferredItemReplacement', class: Google::Apis::AndroidpublisherV3::DeferredItemReplacement, decorator: Google::Apis::AndroidpublisherV3::DeferredItemReplacement::Representation
4391
4537
 
4392
4538
  property :expiry_time, as: 'expiryTime'
4539
+ property :item_replacement, as: 'itemReplacement', class: Google::Apis::AndroidpublisherV3::ItemReplacement, decorator: Google::Apis::AndroidpublisherV3::ItemReplacement::Representation
4540
+
4393
4541
  property :latest_successful_order_id, as: 'latestSuccessfulOrderId'
4394
4542
  property :offer_details, as: 'offerDetails', class: Google::Apis::AndroidpublisherV3::OfferDetails, decorator: Google::Apis::AndroidpublisherV3::OfferDetails::Representation
4395
4543
 
@@ -4414,6 +4562,8 @@ module Google
4414
4562
  collection :line_items, as: 'lineItems', class: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem, decorator: Google::Apis::AndroidpublisherV3::SubscriptionPurchaseLineItem::Representation
4415
4563
 
4416
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
+
4417
4567
  property :paused_state_context, as: 'pausedStateContext', class: Google::Apis::AndroidpublisherV3::PausedStateContext, decorator: Google::Apis::AndroidpublisherV3::PausedStateContext::Representation
4418
4568
 
4419
4569
  property :region_code, as: 'regionCode'
@@ -4430,6 +4580,8 @@ module Google
4430
4580
  # @private
4431
4581
  class Representation < Google::Apis::Core::JsonRepresentation
4432
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
+
4433
4585
  end
4434
4586
  end
4435
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.87.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.87.0
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: