google-apis-androidpublisher_v3 0.68.0 → 0.70.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/androidpublisher_v3/classes.rb +47 -0
- data/lib/google/apis/androidpublisher_v3/gem_version.rb +2 -2
- data/lib/google/apis/androidpublisher_v3/representations.rb +29 -0
- data/lib/google/apis/androidpublisher_v3/service.rb +2 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98b8b9365b4a259584a7f8b67494a1a4d05a9003b0ea2c1c988dc39cb065327b
|
4
|
+
data.tar.gz: 59dd17a14d0085aad9c3f7b3d9acb36c1134e6d39d5c3740d3f712ca2898e8a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91ca07bcca5fe99dcf0f3a82ec82d8f8c834ba5bf06911bf8c7c859914ded04f3d0cd601c1f45e7a4f48f6d32dd666e074ec5599b8ae733169e8c26242b44604
|
7
|
+
data.tar.gz: 2e49c8e2ce77c2e14901dcd55360bf31b2033d6cb3293884544a8047b30a97e7ba4d6c92f4698fb8f52c7253632d2b305d3fec71be8c296cee2fd688c0833a17
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
2
2
|
|
3
|
+
### v0.70.0 (2024-08-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240821
|
6
|
+
|
7
|
+
### v0.69.0 (2024-08-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240814
|
10
|
+
|
3
11
|
### v0.68.0 (2024-08-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240806
|
@@ -2160,6 +2160,27 @@ module Google
|
|
2160
2160
|
end
|
2161
2161
|
end
|
2162
2162
|
|
2163
|
+
# Details about the first time a user/device completed a transaction using
|
2164
|
+
# external offers.
|
2165
|
+
class ExternalOfferInitialAcquisitionDetails
|
2166
|
+
include Google::Apis::Core::Hashable
|
2167
|
+
|
2168
|
+
# Required. The external transaction id of the first completed purchase made by
|
2169
|
+
# the user.
|
2170
|
+
# Corresponds to the JSON property `externalTransactionId`
|
2171
|
+
# @return [String]
|
2172
|
+
attr_accessor :external_transaction_id
|
2173
|
+
|
2174
|
+
def initialize(**args)
|
2175
|
+
update!(**args)
|
2176
|
+
end
|
2177
|
+
|
2178
|
+
# Update properties of this object
|
2179
|
+
def update!(**args)
|
2180
|
+
@external_transaction_id = args[:external_transaction_id] if args.key?(:external_transaction_id)
|
2181
|
+
end
|
2182
|
+
end
|
2183
|
+
|
2163
2184
|
# Details of an external subscription.
|
2164
2185
|
class ExternalSubscription
|
2165
2186
|
include Google::Apis::Core::Hashable
|
@@ -2199,6 +2220,12 @@ module Google
|
|
2199
2220
|
# @return [Google::Apis::AndroidpublisherV3::Price]
|
2200
2221
|
attr_accessor :current_tax_amount
|
2201
2222
|
|
2223
|
+
# Details about the first time a user/device completed a transaction using
|
2224
|
+
# external offers.
|
2225
|
+
# Corresponds to the JSON property `externalOfferInitialAcquisitionDetails`
|
2226
|
+
# @return [Google::Apis::AndroidpublisherV3::ExternalOfferInitialAcquisitionDetails]
|
2227
|
+
attr_accessor :external_offer_initial_acquisition_details
|
2228
|
+
|
2202
2229
|
# Output only. The id of this transaction. All transaction ids under the same
|
2203
2230
|
# package name must be unique. Set when creating the external transaction.
|
2204
2231
|
# Corresponds to the JSON property `externalTransactionId`
|
@@ -2274,6 +2301,7 @@ module Google
|
|
2274
2301
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2275
2302
|
@current_pre_tax_amount = args[:current_pre_tax_amount] if args.key?(:current_pre_tax_amount)
|
2276
2303
|
@current_tax_amount = args[:current_tax_amount] if args.key?(:current_tax_amount)
|
2304
|
+
@external_offer_initial_acquisition_details = args[:external_offer_initial_acquisition_details] if args.key?(:external_offer_initial_acquisition_details)
|
2277
2305
|
@external_transaction_id = args[:external_transaction_id] if args.key?(:external_transaction_id)
|
2278
2306
|
@one_time_transaction = args[:one_time_transaction] if args.key?(:one_time_transaction)
|
2279
2307
|
@original_pre_tax_amount = args[:original_pre_tax_amount] if args.key?(:original_pre_tax_amount)
|
@@ -5015,6 +5043,11 @@ module Google
|
|
5015
5043
|
class RevocationContext
|
5016
5044
|
include Google::Apis::Core::Hashable
|
5017
5045
|
|
5046
|
+
# Used to determine if the refund type in the RevocationContext is a full refund.
|
5047
|
+
# Corresponds to the JSON property `fullRefund`
|
5048
|
+
# @return [Google::Apis::AndroidpublisherV3::RevocationContextFullRefund]
|
5049
|
+
attr_accessor :full_refund
|
5050
|
+
|
5018
5051
|
# Used to determine if the refund type in the RevocationContext is a prorated
|
5019
5052
|
# refund.
|
5020
5053
|
# Corresponds to the JSON property `proratedRefund`
|
@@ -5027,10 +5060,24 @@ module Google
|
|
5027
5060
|
|
5028
5061
|
# Update properties of this object
|
5029
5062
|
def update!(**args)
|
5063
|
+
@full_refund = args[:full_refund] if args.key?(:full_refund)
|
5030
5064
|
@prorated_refund = args[:prorated_refund] if args.key?(:prorated_refund)
|
5031
5065
|
end
|
5032
5066
|
end
|
5033
5067
|
|
5068
|
+
# Used to determine if the refund type in the RevocationContext is a full refund.
|
5069
|
+
class RevocationContextFullRefund
|
5070
|
+
include Google::Apis::Core::Hashable
|
5071
|
+
|
5072
|
+
def initialize(**args)
|
5073
|
+
update!(**args)
|
5074
|
+
end
|
5075
|
+
|
5076
|
+
# Update properties of this object
|
5077
|
+
def update!(**args)
|
5078
|
+
end
|
5079
|
+
end
|
5080
|
+
|
5034
5081
|
# Used to determine if the refund type in the RevocationContext is a prorated
|
5035
5082
|
# refund.
|
5036
5083
|
class RevocationContextProratedRefund
|
@@ -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.70.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -484,6 +484,12 @@ module Google
|
|
484
484
|
include Google::Apis::Core::JsonObjectSupport
|
485
485
|
end
|
486
486
|
|
487
|
+
class ExternalOfferInitialAcquisitionDetails
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
487
493
|
class ExternalSubscription
|
488
494
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
495
|
|
@@ -1012,6 +1018,12 @@ module Google
|
|
1012
1018
|
include Google::Apis::Core::JsonObjectSupport
|
1013
1019
|
end
|
1014
1020
|
|
1021
|
+
class RevocationContextFullRefund
|
1022
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1023
|
+
|
1024
|
+
include Google::Apis::Core::JsonObjectSupport
|
1025
|
+
end
|
1026
|
+
|
1015
1027
|
class RevocationContextProratedRefund
|
1016
1028
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1017
1029
|
|
@@ -2116,6 +2128,13 @@ module Google
|
|
2116
2128
|
end
|
2117
2129
|
end
|
2118
2130
|
|
2131
|
+
class ExternalOfferInitialAcquisitionDetails
|
2132
|
+
# @private
|
2133
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2134
|
+
property :external_transaction_id, as: 'externalTransactionId'
|
2135
|
+
end
|
2136
|
+
end
|
2137
|
+
|
2119
2138
|
class ExternalSubscription
|
2120
2139
|
# @private
|
2121
2140
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2131,6 +2150,8 @@ module Google
|
|
2131
2150
|
|
2132
2151
|
property :current_tax_amount, as: 'currentTaxAmount', class: Google::Apis::AndroidpublisherV3::Price, decorator: Google::Apis::AndroidpublisherV3::Price::Representation
|
2133
2152
|
|
2153
|
+
property :external_offer_initial_acquisition_details, as: 'externalOfferInitialAcquisitionDetails', class: Google::Apis::AndroidpublisherV3::ExternalOfferInitialAcquisitionDetails, decorator: Google::Apis::AndroidpublisherV3::ExternalOfferInitialAcquisitionDetails::Representation
|
2154
|
+
|
2134
2155
|
property :external_transaction_id, as: 'externalTransactionId'
|
2135
2156
|
property :one_time_transaction, as: 'oneTimeTransaction', class: Google::Apis::AndroidpublisherV3::OneTimeExternalTransaction, decorator: Google::Apis::AndroidpublisherV3::OneTimeExternalTransaction::Representation
|
2136
2157
|
|
@@ -2960,11 +2981,19 @@ module Google
|
|
2960
2981
|
class RevocationContext
|
2961
2982
|
# @private
|
2962
2983
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2984
|
+
property :full_refund, as: 'fullRefund', class: Google::Apis::AndroidpublisherV3::RevocationContextFullRefund, decorator: Google::Apis::AndroidpublisherV3::RevocationContextFullRefund::Representation
|
2985
|
+
|
2963
2986
|
property :prorated_refund, as: 'proratedRefund', class: Google::Apis::AndroidpublisherV3::RevocationContextProratedRefund, decorator: Google::Apis::AndroidpublisherV3::RevocationContextProratedRefund::Representation
|
2964
2987
|
|
2965
2988
|
end
|
2966
2989
|
end
|
2967
2990
|
|
2991
|
+
class RevocationContextFullRefund
|
2992
|
+
# @private
|
2993
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2994
|
+
end
|
2995
|
+
end
|
2996
|
+
|
2968
2997
|
class RevocationContextProratedRefund
|
2969
2998
|
# @private
|
2970
2999
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -705,9 +705,8 @@ module Google
|
|
705
705
|
# @param [String] edit_id
|
706
706
|
# Identifier of the edit.
|
707
707
|
# @param [Boolean] ack_bundle_installation_warning
|
708
|
-
#
|
709
|
-
#
|
710
|
-
# typically 100 MB).
|
708
|
+
# Deprecated. The installation warning has been removed, it's not necessary to
|
709
|
+
# set this field anymore.
|
711
710
|
# @param [String] device_tier_config_id
|
712
711
|
# Device tier config (DTC) to be used for generating deliverables (APKs).
|
713
712
|
# Contains id of the DTC or "LATEST" for last uploaded DTC.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-androidpublisher_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.70.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidpublisher_v3/v0.70.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidpublisher_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|