google-apis-androidpublisher_v3 0.59.0 → 0.61.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86b8c5723254984d7a805e3b29245ceeafdf89ef4e65ceb43a6c43ecc451d419
|
4
|
+
data.tar.gz: f6f84086f955b4091be6d837d3b4a875d13bbd05b768922f1bff1f10e139ba78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c24243f7e3dd8d4a40e53d9d46ea1ec54095fdff912113115512a03ce63c8d4f5ba2d2276fe79e6ca32a96cb3b00340d0eb747f64c83e278c7c59379ccb30d
|
7
|
+
data.tar.gz: dc6f781168ca5ba4110598ba2472b34baa4734f25dabba76b1e30527bb69640226d5d3afdf754f4c44c2f3250042f3a87507eedbe6bc3f089be7079e832df5d0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-androidpublisher_v3
|
2
2
|
|
3
|
+
### v0.61.0 (2024-04-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240409
|
6
|
+
|
7
|
+
### v0.60.0 (2024-03-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240328
|
10
|
+
|
3
11
|
### v0.59.0 (2024-03-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240321
|
@@ -3791,7 +3791,8 @@ module Google
|
|
3791
3791
|
end
|
3792
3792
|
end
|
3793
3793
|
|
3794
|
-
# Represents a custom tag specified for
|
3794
|
+
# Represents a custom tag specified for one-time products, purchase options,
|
3795
|
+
# base plans and offers.
|
3795
3796
|
class OfferTag
|
3796
3797
|
include Google::Apis::Core::Hashable
|
3797
3798
|
|
@@ -4180,8 +4181,8 @@ module Google
|
|
4180
4181
|
# The type of purchase of the inapp product. This field is only set if this
|
4181
4182
|
# purchase was not made using the standard in-app billing flow. Possible values
|
4182
4183
|
# are: 0. Test (i.e. purchased from a license testing account) 1. Promo (i.e.
|
4183
|
-
# purchased using a promo code)
|
4184
|
-
# instead of paying)
|
4184
|
+
# purchased using a promo code). Does not include Play Points purchases. 2.
|
4185
|
+
# Rewarded (i.e. from watching a video ad instead of paying)
|
4185
4186
|
# Corresponds to the JSON property `purchaseType`
|
4186
4187
|
# @return [Fixnum]
|
4187
4188
|
attr_accessor :purchase_type
|
@@ -6139,19 +6140,61 @@ module Google
|
|
6139
6140
|
class TargetingRuleScope
|
6140
6141
|
include Google::Apis::Core::Hashable
|
6141
6142
|
|
6143
|
+
# Represents the targeting rule scope corresponding to any subscription in the
|
6144
|
+
# parent app.
|
6145
|
+
# Corresponds to the JSON property `anySubscriptionInApp`
|
6146
|
+
# @return [Google::Apis::AndroidpublisherV3::TargetingRuleScopeAnySubscriptionInApp]
|
6147
|
+
attr_accessor :any_subscription_in_app
|
6148
|
+
|
6142
6149
|
# The scope of the current targeting rule is the subscription with the specified
|
6143
6150
|
# subscription ID. Must be a subscription within the same parent app.
|
6144
6151
|
# Corresponds to the JSON property `specificSubscriptionInApp`
|
6145
6152
|
# @return [String]
|
6146
6153
|
attr_accessor :specific_subscription_in_app
|
6147
6154
|
|
6155
|
+
# Represents the targeting rule scope corresponding to the subscriptions in
|
6156
|
+
# which this offer is defined.
|
6157
|
+
# Corresponds to the JSON property `thisSubscription`
|
6158
|
+
# @return [Google::Apis::AndroidpublisherV3::TargetingRuleScopeThisSubscription]
|
6159
|
+
attr_accessor :this_subscription
|
6160
|
+
|
6148
6161
|
def initialize(**args)
|
6149
6162
|
update!(**args)
|
6150
6163
|
end
|
6151
6164
|
|
6152
6165
|
# Update properties of this object
|
6153
6166
|
def update!(**args)
|
6167
|
+
@any_subscription_in_app = args[:any_subscription_in_app] if args.key?(:any_subscription_in_app)
|
6154
6168
|
@specific_subscription_in_app = args[:specific_subscription_in_app] if args.key?(:specific_subscription_in_app)
|
6169
|
+
@this_subscription = args[:this_subscription] if args.key?(:this_subscription)
|
6170
|
+
end
|
6171
|
+
end
|
6172
|
+
|
6173
|
+
# Represents the targeting rule scope corresponding to any subscription in the
|
6174
|
+
# parent app.
|
6175
|
+
class TargetingRuleScopeAnySubscriptionInApp
|
6176
|
+
include Google::Apis::Core::Hashable
|
6177
|
+
|
6178
|
+
def initialize(**args)
|
6179
|
+
update!(**args)
|
6180
|
+
end
|
6181
|
+
|
6182
|
+
# Update properties of this object
|
6183
|
+
def update!(**args)
|
6184
|
+
end
|
6185
|
+
end
|
6186
|
+
|
6187
|
+
# Represents the targeting rule scope corresponding to the subscriptions in
|
6188
|
+
# which this offer is defined.
|
6189
|
+
class TargetingRuleScopeThisSubscription
|
6190
|
+
include Google::Apis::Core::Hashable
|
6191
|
+
|
6192
|
+
def initialize(**args)
|
6193
|
+
update!(**args)
|
6194
|
+
end
|
6195
|
+
|
6196
|
+
# Update properties of this object
|
6197
|
+
def update!(**args)
|
6155
6198
|
end
|
6156
6199
|
end
|
6157
6200
|
|
@@ -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.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240409"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1186,6 +1186,18 @@ module Google
|
|
1186
1186
|
include Google::Apis::Core::JsonObjectSupport
|
1187
1187
|
end
|
1188
1188
|
|
1189
|
+
class TargetingRuleScopeAnySubscriptionInApp
|
1190
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1191
|
+
|
1192
|
+
include Google::Apis::Core::JsonObjectSupport
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class TargetingRuleScopeThisSubscription
|
1196
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1197
|
+
|
1198
|
+
include Google::Apis::Core::JsonObjectSupport
|
1199
|
+
end
|
1200
|
+
|
1189
1201
|
class TargetingUpdate
|
1190
1202
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1191
1203
|
|
@@ -3225,7 +3237,23 @@ module Google
|
|
3225
3237
|
class TargetingRuleScope
|
3226
3238
|
# @private
|
3227
3239
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3240
|
+
property :any_subscription_in_app, as: 'anySubscriptionInApp', class: Google::Apis::AndroidpublisherV3::TargetingRuleScopeAnySubscriptionInApp, decorator: Google::Apis::AndroidpublisherV3::TargetingRuleScopeAnySubscriptionInApp::Representation
|
3241
|
+
|
3228
3242
|
property :specific_subscription_in_app, as: 'specificSubscriptionInApp'
|
3243
|
+
property :this_subscription, as: 'thisSubscription', class: Google::Apis::AndroidpublisherV3::TargetingRuleScopeThisSubscription, decorator: Google::Apis::AndroidpublisherV3::TargetingRuleScopeThisSubscription::Representation
|
3244
|
+
|
3245
|
+
end
|
3246
|
+
end
|
3247
|
+
|
3248
|
+
class TargetingRuleScopeAnySubscriptionInApp
|
3249
|
+
# @private
|
3250
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3251
|
+
end
|
3252
|
+
end
|
3253
|
+
|
3254
|
+
class TargetingRuleScopeThisSubscription
|
3255
|
+
# @private
|
3256
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3229
3257
|
end
|
3230
3258
|
end
|
3231
3259
|
|
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.61.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-
|
11
|
+
date: 2024-04-14 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.61.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: []
|