google-apis-androidpublisher_v3 0.91.0 → 0.93.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: b17c84bc192f63e02924cbc2b94349a14e4cf849960b4e1ce8efcc40a2954871
|
|
4
|
+
data.tar.gz: c07cda34aaca9f366e0ce5ccf778c66a20bf8b236c42be125ec1965e0ceaf21a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6581d279a096dab6221b7564753d0db77076d859122e691d2e4093b56d5b415b822250e6e5338f8f94121a4618f6ea8d0ba1a8017cf91f3cb1a46f99a6b2e475
|
|
7
|
+
data.tar.gz: 838d8c98a2aac1e09d5f241ba464b9eae829821901945ae40e806ecdd2aae85d13e6c10d62cccfe9e4854fdd2409b9e1f5dc5edde74113fa4e22b66ee51d1555
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
|
2
2
|
|
|
3
|
+
### v0.93.0 (2025-12-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251215
|
|
6
|
+
|
|
7
|
+
### v0.92.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251211
|
|
10
|
+
|
|
3
11
|
### v0.91.0 (2025-12-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251203
|
|
@@ -2990,6 +2990,50 @@ module Google
|
|
|
2990
2990
|
end
|
|
2991
2991
|
end
|
|
2992
2992
|
|
|
2993
|
+
# Reporting details unique to the external offers program.
|
|
2994
|
+
class ExternalOfferDetails
|
|
2995
|
+
include Google::Apis::Core::Hashable
|
|
2996
|
+
|
|
2997
|
+
# Optional. The external transaction id associated with the app download event
|
|
2998
|
+
# through an external link. Required when reporting transactions made in
|
|
2999
|
+
# externally installed apps.
|
|
3000
|
+
# Corresponds to the JSON property `appDownloadEventExternalTransactionId`
|
|
3001
|
+
# @return [String]
|
|
3002
|
+
attr_accessor :app_download_event_external_transaction_id
|
|
3003
|
+
|
|
3004
|
+
# Optional. The category of the downloaded app though this transaction. This
|
|
3005
|
+
# must match the category provided in Play Console during the external app
|
|
3006
|
+
# verification process. Only required for app downloads.
|
|
3007
|
+
# Corresponds to the JSON property `installedAppCategory`
|
|
3008
|
+
# @return [String]
|
|
3009
|
+
attr_accessor :installed_app_category
|
|
3010
|
+
|
|
3011
|
+
# Optional. The package name of the app downloaded through this transaction.
|
|
3012
|
+
# Required when link_type is LINK_TO_APP_DOWNLOAD.
|
|
3013
|
+
# Corresponds to the JSON property `installedAppPackage`
|
|
3014
|
+
# @return [String]
|
|
3015
|
+
attr_accessor :installed_app_package
|
|
3016
|
+
|
|
3017
|
+
# Optional. The type of content being reported by this transaction. Required
|
|
3018
|
+
# when reporting app downloads or purchased digital content offers made in app
|
|
3019
|
+
# installed through Google Play.
|
|
3020
|
+
# Corresponds to the JSON property `linkType`
|
|
3021
|
+
# @return [String]
|
|
3022
|
+
attr_accessor :link_type
|
|
3023
|
+
|
|
3024
|
+
def initialize(**args)
|
|
3025
|
+
update!(**args)
|
|
3026
|
+
end
|
|
3027
|
+
|
|
3028
|
+
# Update properties of this object
|
|
3029
|
+
def update!(**args)
|
|
3030
|
+
@app_download_event_external_transaction_id = args[:app_download_event_external_transaction_id] if args.key?(:app_download_event_external_transaction_id)
|
|
3031
|
+
@installed_app_category = args[:installed_app_category] if args.key?(:installed_app_category)
|
|
3032
|
+
@installed_app_package = args[:installed_app_package] if args.key?(:installed_app_package)
|
|
3033
|
+
@link_type = args[:link_type] if args.key?(:link_type)
|
|
3034
|
+
end
|
|
3035
|
+
end
|
|
3036
|
+
|
|
2993
3037
|
# Details of an external subscription.
|
|
2994
3038
|
class ExternalSubscription
|
|
2995
3039
|
include Google::Apis::Core::Hashable
|
|
@@ -3029,6 +3073,11 @@ module Google
|
|
|
3029
3073
|
# @return [Google::Apis::AndroidpublisherV3::Price]
|
|
3030
3074
|
attr_accessor :current_tax_amount
|
|
3031
3075
|
|
|
3076
|
+
# Reporting details unique to the external offers program.
|
|
3077
|
+
# Corresponds to the JSON property `externalOfferDetails`
|
|
3078
|
+
# @return [Google::Apis::AndroidpublisherV3::ExternalOfferDetails]
|
|
3079
|
+
attr_accessor :external_offer_details
|
|
3080
|
+
|
|
3032
3081
|
# Output only. The id of this transaction. All transaction ids under the same
|
|
3033
3082
|
# package name must be unique. Set when creating the external transaction.
|
|
3034
3083
|
# Corresponds to the JSON property `externalTransactionId`
|
|
@@ -3104,6 +3153,7 @@ module Google
|
|
|
3104
3153
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3105
3154
|
@current_pre_tax_amount = args[:current_pre_tax_amount] if args.key?(:current_pre_tax_amount)
|
|
3106
3155
|
@current_tax_amount = args[:current_tax_amount] if args.key?(:current_tax_amount)
|
|
3156
|
+
@external_offer_details = args[:external_offer_details] if args.key?(:external_offer_details)
|
|
3107
3157
|
@external_transaction_id = args[:external_transaction_id] if args.key?(:external_transaction_id)
|
|
3108
3158
|
@one_time_transaction = args[:one_time_transaction] if args.key?(:one_time_transaction)
|
|
3109
3159
|
@original_pre_tax_amount = args[:original_pre_tax_amount] if args.key?(:original_pre_tax_amount)
|
|
@@ -4705,6 +4755,14 @@ module Google
|
|
|
4705
4755
|
attr_accessor :is_tokenized_digital_asset
|
|
4706
4756
|
alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
|
|
4707
4757
|
|
|
4758
|
+
# Product tax category code to assign to the in-app product. Product tax
|
|
4759
|
+
# category determines the transaction tax rates applied to the product. Refer to
|
|
4760
|
+
# the [Help Center article](https://support.google.com/googleplay/android-
|
|
4761
|
+
# developer/answer/16408159) for more information.
|
|
4762
|
+
# Corresponds to the JSON property `productTaxCategoryCode`
|
|
4763
|
+
# @return [String]
|
|
4764
|
+
attr_accessor :product_tax_category_code
|
|
4765
|
+
|
|
4708
4766
|
# A mapping from region code to tax rate details. The keys are region codes as
|
|
4709
4767
|
# defined by Unicode's "CLDR".
|
|
4710
4768
|
# Corresponds to the JSON property `taxRateInfoByRegionCode`
|
|
@@ -4719,6 +4777,7 @@ module Google
|
|
|
4719
4777
|
def update!(**args)
|
|
4720
4778
|
@eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
|
|
4721
4779
|
@is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
|
|
4780
|
+
@product_tax_category_code = args[:product_tax_category_code] if args.key?(:product_tax_category_code)
|
|
4722
4781
|
@tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
|
|
4723
4782
|
end
|
|
4724
4783
|
end
|
|
@@ -5594,6 +5653,14 @@ module Google
|
|
|
5594
5653
|
attr_accessor :is_tokenized_digital_asset
|
|
5595
5654
|
alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
|
|
5596
5655
|
|
|
5656
|
+
# Product tax category code to assign to the one-time product. Product tax
|
|
5657
|
+
# category determines the transaction tax rates applied to the product. Refer to
|
|
5658
|
+
# the [Help Center article](https://support.google.com/googleplay/android-
|
|
5659
|
+
# developer/answer/16408159) for more information.
|
|
5660
|
+
# Corresponds to the JSON property `productTaxCategoryCode`
|
|
5661
|
+
# @return [String]
|
|
5662
|
+
attr_accessor :product_tax_category_code
|
|
5663
|
+
|
|
5597
5664
|
# Regional tax configuration.
|
|
5598
5665
|
# Corresponds to the JSON property `regionalTaxConfigs`
|
|
5599
5666
|
# @return [Array<Google::Apis::AndroidpublisherV3::RegionalTaxConfig>]
|
|
@@ -5606,6 +5673,7 @@ module Google
|
|
|
5606
5673
|
# Update properties of this object
|
|
5607
5674
|
def update!(**args)
|
|
5608
5675
|
@is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
|
|
5676
|
+
@product_tax_category_code = args[:product_tax_category_code] if args.key?(:product_tax_category_code)
|
|
5609
5677
|
@regional_tax_configs = args[:regional_tax_configs] if args.key?(:regional_tax_configs)
|
|
5610
5678
|
end
|
|
5611
5679
|
end
|
|
@@ -6691,14 +6759,6 @@ module Google
|
|
|
6691
6759
|
class ProrationPeriodDetails
|
|
6692
6760
|
include Google::Apis::Core::Hashable
|
|
6693
6761
|
|
|
6694
|
-
# The last order id of the original subscription purchase prior to the plan
|
|
6695
|
-
# change. This is only populated if this proration period is from an ugrade/
|
|
6696
|
-
# downgrade from a previous subscription and carries the remaining offer phase
|
|
6697
|
-
# from the linked order of the previous subscription.
|
|
6698
|
-
# Corresponds to the JSON property `linkedOrderId`
|
|
6699
|
-
# @return [String]
|
|
6700
|
-
attr_accessor :linked_order_id
|
|
6701
|
-
|
|
6702
6762
|
# Represent the original offer phase from the purchased the line item if the
|
|
6703
6763
|
# proration period contains any of them. For example, a proration period from
|
|
6704
6764
|
# CHARGE_FULL_PRICE plan change may merge the 1st offer phase of the
|
|
@@ -6714,7 +6774,6 @@ module Google
|
|
|
6714
6774
|
|
|
6715
6775
|
# Update properties of this object
|
|
6716
6776
|
def update!(**args)
|
|
6717
|
-
@linked_order_id = args[:linked_order_id] if args.key?(:linked_order_id)
|
|
6718
6777
|
@original_offer_phase = args[:original_offer_phase] if args.key?(:original_offer_phase)
|
|
6719
6778
|
end
|
|
6720
6779
|
end
|
|
@@ -8818,6 +8877,14 @@ module Google
|
|
|
8818
8877
|
attr_accessor :is_tokenized_digital_asset
|
|
8819
8878
|
alias_method :is_tokenized_digital_asset?, :is_tokenized_digital_asset
|
|
8820
8879
|
|
|
8880
|
+
# Product tax category code to assign to the subscription. Product tax category
|
|
8881
|
+
# determines the transaction tax rates applied to the subscription. Refer to the
|
|
8882
|
+
# [Help Center article](https://support.google.com/googleplay/android-developer/
|
|
8883
|
+
# answer/16408159) for more information.
|
|
8884
|
+
# Corresponds to the JSON property `productTaxCategoryCode`
|
|
8885
|
+
# @return [String]
|
|
8886
|
+
attr_accessor :product_tax_category_code
|
|
8887
|
+
|
|
8821
8888
|
# A mapping from region code to tax rate details. The keys are region codes as
|
|
8822
8889
|
# defined by Unicode's "CLDR".
|
|
8823
8890
|
# Corresponds to the JSON property `taxRateInfoByRegionCode`
|
|
@@ -8832,6 +8899,7 @@ module Google
|
|
|
8832
8899
|
def update!(**args)
|
|
8833
8900
|
@eea_withdrawal_right_type = args[:eea_withdrawal_right_type] if args.key?(:eea_withdrawal_right_type)
|
|
8834
8901
|
@is_tokenized_digital_asset = args[:is_tokenized_digital_asset] if args.key?(:is_tokenized_digital_asset)
|
|
8902
|
+
@product_tax_category_code = args[:product_tax_category_code] if args.key?(:product_tax_category_code)
|
|
8835
8903
|
@tax_rate_info_by_region_code = args[:tax_rate_info_by_region_code] if args.key?(:tax_rate_info_by_region_code)
|
|
8836
8904
|
end
|
|
8837
8905
|
end
|
|
@@ -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.93.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 = "20251215"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -670,6 +670,12 @@ module Google
|
|
|
670
670
|
include Google::Apis::Core::JsonObjectSupport
|
|
671
671
|
end
|
|
672
672
|
|
|
673
|
+
class ExternalOfferDetails
|
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
|
+
|
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
677
|
+
end
|
|
678
|
+
|
|
673
679
|
class ExternalSubscription
|
|
674
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
681
|
|
|
@@ -2907,6 +2913,16 @@ module Google
|
|
|
2907
2913
|
end
|
|
2908
2914
|
end
|
|
2909
2915
|
|
|
2916
|
+
class ExternalOfferDetails
|
|
2917
|
+
# @private
|
|
2918
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2919
|
+
property :app_download_event_external_transaction_id, as: 'appDownloadEventExternalTransactionId'
|
|
2920
|
+
property :installed_app_category, as: 'installedAppCategory'
|
|
2921
|
+
property :installed_app_package, as: 'installedAppPackage'
|
|
2922
|
+
property :link_type, as: 'linkType'
|
|
2923
|
+
end
|
|
2924
|
+
end
|
|
2925
|
+
|
|
2910
2926
|
class ExternalSubscription
|
|
2911
2927
|
# @private
|
|
2912
2928
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2922,6 +2938,8 @@ module Google
|
|
|
2922
2938
|
|
|
2923
2939
|
property :current_tax_amount, as: 'currentTaxAmount', class: Google::Apis::AndroidpublisherV3::Price, decorator: Google::Apis::AndroidpublisherV3::Price::Representation
|
|
2924
2940
|
|
|
2941
|
+
property :external_offer_details, as: 'externalOfferDetails', class: Google::Apis::AndroidpublisherV3::ExternalOfferDetails, decorator: Google::Apis::AndroidpublisherV3::ExternalOfferDetails::Representation
|
|
2942
|
+
|
|
2925
2943
|
property :external_transaction_id, as: 'externalTransactionId'
|
|
2926
2944
|
property :one_time_transaction, as: 'oneTimeTransaction', class: Google::Apis::AndroidpublisherV3::OneTimeExternalTransaction, decorator: Google::Apis::AndroidpublisherV3::OneTimeExternalTransaction::Representation
|
|
2927
2945
|
|
|
@@ -3407,6 +3425,7 @@ module Google
|
|
|
3407
3425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3408
3426
|
property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
|
|
3409
3427
|
property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
|
|
3428
|
+
property :product_tax_category_code, as: 'productTaxCategoryCode'
|
|
3410
3429
|
hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
|
|
3411
3430
|
|
|
3412
3431
|
end
|
|
@@ -3675,6 +3694,7 @@ module Google
|
|
|
3675
3694
|
# @private
|
|
3676
3695
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3677
3696
|
property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
|
|
3697
|
+
property :product_tax_category_code, as: 'productTaxCategoryCode'
|
|
3678
3698
|
collection :regional_tax_configs, as: 'regionalTaxConfigs', class: Google::Apis::AndroidpublisherV3::RegionalTaxConfig, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxConfig::Representation
|
|
3679
3699
|
|
|
3680
3700
|
end
|
|
@@ -3992,7 +4012,6 @@ module Google
|
|
|
3992
4012
|
class ProrationPeriodDetails
|
|
3993
4013
|
# @private
|
|
3994
4014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3995
|
-
property :linked_order_id, as: 'linkedOrderId'
|
|
3996
4015
|
property :original_offer_phase, as: 'originalOfferPhase'
|
|
3997
4016
|
end
|
|
3998
4017
|
end
|
|
@@ -4606,6 +4625,7 @@ module Google
|
|
|
4606
4625
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4607
4626
|
property :eea_withdrawal_right_type, as: 'eeaWithdrawalRightType'
|
|
4608
4627
|
property :is_tokenized_digital_asset, as: 'isTokenizedDigitalAsset'
|
|
4628
|
+
property :product_tax_category_code, as: 'productTaxCategoryCode'
|
|
4609
4629
|
hash :tax_rate_info_by_region_code, as: 'taxRateInfoByRegionCode', class: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo, decorator: Google::Apis::AndroidpublisherV3::RegionalTaxRateInfo::Representation
|
|
4610
4630
|
|
|
4611
4631
|
end
|
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.93.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.93.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:
|