google-apis-paymentsresellersubscription_v1 0.32.0 → 0.34.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: 77641cb3e502d19bc99790e37cd5a0357da5f356d251c25fd82b220f0875b744
|
4
|
+
data.tar.gz: 323199fa7575fea576f638cb212a6d56a8075385fcfd3b2f5636bc1a251692c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0bc7c63da1c3caf76ca34ea2de23b0482f62425e27f88b6a3c4afd8bc0f94d55b4434af3361dbcf21d96b820d8dfb919c69598c3f018f3b546d0ae1faa7e09b
|
7
|
+
data.tar.gz: 12b6ec4f70e5cf0b9c49df261afa7d3ccda03799fa0e1e6e6097763f3ee1a713fd4c9e04cd3c0c4067d3940bf4d6e6b65967443850f771716175b9cc45f7189b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-paymentsresellersubscription_v1
|
2
2
|
|
3
|
+
### v0.34.0 (2023-10-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230924
|
6
|
+
|
7
|
+
### v0.33.0 (2023-09-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230913
|
10
|
+
|
3
11
|
### v0.32.0 (2023-08-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230823
|
@@ -126,12 +126,47 @@ module Google
|
|
126
126
|
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequest
|
127
127
|
include Google::Apis::Core::Hashable
|
128
128
|
|
129
|
+
# Optional. The line items to be entitled. If unspecified, all line items will
|
130
|
+
# be entitled.
|
131
|
+
# Corresponds to the JSON property `lineItemEntitlementDetails`
|
132
|
+
# @return [Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequestLineItemEntitlementDetails>]
|
133
|
+
attr_accessor :line_item_entitlement_details
|
134
|
+
|
135
|
+
def initialize(**args)
|
136
|
+
update!(**args)
|
137
|
+
end
|
138
|
+
|
139
|
+
# Update properties of this object
|
140
|
+
def update!(**args)
|
141
|
+
@line_item_entitlement_details = args[:line_item_entitlement_details] if args.key?(:line_item_entitlement_details)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
# The details of the line item to be entitled.
|
146
|
+
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequestLineItemEntitlementDetails
|
147
|
+
include Google::Apis::Core::Hashable
|
148
|
+
|
149
|
+
# Required. The index of the line item to be entitled.
|
150
|
+
# Corresponds to the JSON property `lineItemIndex`
|
151
|
+
# @return [Fixnum]
|
152
|
+
attr_accessor :line_item_index
|
153
|
+
|
154
|
+
# Optional. Only applicable if the line item corresponds to a hard bundle.
|
155
|
+
# Product resource names that identify the bundle elements to be entitled in the
|
156
|
+
# line item. If unspecified, all bundle elements will be entitled. The format is
|
157
|
+
# 'partners/`partner_id`/products/`product_id`'.
|
158
|
+
# Corresponds to the JSON property `products`
|
159
|
+
# @return [Array<String>]
|
160
|
+
attr_accessor :products
|
161
|
+
|
129
162
|
def initialize(**args)
|
130
163
|
update!(**args)
|
131
164
|
end
|
132
165
|
|
133
166
|
# Update properties of this object
|
134
167
|
def update!(**args)
|
168
|
+
@line_item_index = args[:line_item_index] if args.key?(:line_item_index)
|
169
|
+
@products = args[:products] if args.key?(:products)
|
135
170
|
end
|
136
171
|
end
|
137
172
|
|
@@ -458,6 +493,11 @@ module Google
|
|
458
493
|
class GoogleCloudPaymentsResellerSubscriptionV1Product
|
459
494
|
include Google::Apis::Core::Hashable
|
460
495
|
|
496
|
+
# Details for a bundle product.
|
497
|
+
# Corresponds to the JSON property `bundleDetails`
|
498
|
+
# @return [Google::Apis::PaymentsresellersubscriptionV1::ProductBundleDetails]
|
499
|
+
attr_accessor :bundle_details
|
500
|
+
|
461
501
|
# Details for a subscriptiin line item with finite billing cycles.
|
462
502
|
# Corresponds to the JSON property `finiteBillingCycleDetails`
|
463
503
|
# @return [Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails]
|
@@ -474,6 +514,11 @@ module Google
|
|
474
514
|
# @return [Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig>]
|
475
515
|
attr_accessor :price_configs
|
476
516
|
|
517
|
+
# Output only. Output Only. Specifies the type of the product.
|
518
|
+
# Corresponds to the JSON property `productType`
|
519
|
+
# @return [String]
|
520
|
+
attr_accessor :product_type
|
521
|
+
|
477
522
|
# Output only. 2-letter ISO region code where the product is available in. Ex. "
|
478
523
|
# US" Please refers to: https://en.wikipedia.org/wiki/ISO_3166-1
|
479
524
|
# Corresponds to the JSON property `regionCodes`
|
@@ -496,15 +541,37 @@ module Google
|
|
496
541
|
|
497
542
|
# Update properties of this object
|
498
543
|
def update!(**args)
|
544
|
+
@bundle_details = args[:bundle_details] if args.key?(:bundle_details)
|
499
545
|
@finite_billing_cycle_details = args[:finite_billing_cycle_details] if args.key?(:finite_billing_cycle_details)
|
500
546
|
@name = args[:name] if args.key?(:name)
|
501
547
|
@price_configs = args[:price_configs] if args.key?(:price_configs)
|
548
|
+
@product_type = args[:product_type] if args.key?(:product_type)
|
502
549
|
@region_codes = args[:region_codes] if args.key?(:region_codes)
|
503
550
|
@subscription_billing_cycle_duration = args[:subscription_billing_cycle_duration] if args.key?(:subscription_billing_cycle_duration)
|
504
551
|
@titles = args[:titles] if args.key?(:titles)
|
505
552
|
end
|
506
553
|
end
|
507
554
|
|
555
|
+
# The individual product that is included in the bundle.
|
556
|
+
class GoogleCloudPaymentsResellerSubscriptionV1ProductBundleDetailsBundleElement
|
557
|
+
include Google::Apis::Core::Hashable
|
558
|
+
|
559
|
+
# Required. Output only. Product resource name that identifies the bundle
|
560
|
+
# element. The format is 'partners/`partner_id`/products/`product_id`'.
|
561
|
+
# Corresponds to the JSON property `product`
|
562
|
+
# @return [String]
|
563
|
+
attr_accessor :product
|
564
|
+
|
565
|
+
def initialize(**args)
|
566
|
+
update!(**args)
|
567
|
+
end
|
568
|
+
|
569
|
+
# Update properties of this object
|
570
|
+
def update!(**args)
|
571
|
+
@product = args[:product] if args.key?(:product)
|
572
|
+
end
|
573
|
+
end
|
574
|
+
|
508
575
|
# Specifies product specific payload.
|
509
576
|
class GoogleCloudPaymentsResellerSubscriptionV1ProductPayload
|
510
577
|
include Google::Apis::Core::Hashable
|
@@ -891,6 +958,11 @@ module Google
|
|
891
958
|
# @return [Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Amount]
|
892
959
|
attr_accessor :amount
|
893
960
|
|
961
|
+
# The bundle details for a line item corresponding to a hard bundle.
|
962
|
+
# Corresponds to the JSON property `bundleDetails`
|
963
|
+
# @return [Google::Apis::PaymentsresellersubscriptionV1::SubscriptionLineItemBundleDetails]
|
964
|
+
attr_accessor :bundle_details
|
965
|
+
|
894
966
|
# Output only. Description of this line item.
|
895
967
|
# Corresponds to the JSON property `description`
|
896
968
|
# @return [String]
|
@@ -955,6 +1027,7 @@ module Google
|
|
955
1027
|
# Update properties of this object
|
956
1028
|
def update!(**args)
|
957
1029
|
@amount = args[:amount] if args.key?(:amount)
|
1030
|
+
@bundle_details = args[:bundle_details] if args.key?(:bundle_details)
|
958
1031
|
@description = args[:description] if args.key?(:description)
|
959
1032
|
@finite_billing_cycle_details = args[:finite_billing_cycle_details] if args.key?(:finite_billing_cycle_details)
|
960
1033
|
@line_item_free_trial_end_time = args[:line_item_free_trial_end_time] if args.key?(:line_item_free_trial_end_time)
|
@@ -968,6 +1041,32 @@ module Google
|
|
968
1041
|
end
|
969
1042
|
end
|
970
1043
|
|
1044
|
+
# The details for an element in the hard bundle.
|
1045
|
+
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails
|
1046
|
+
include Google::Apis::Core::Hashable
|
1047
|
+
|
1048
|
+
# Output only. Product resource name that identifies the bundle element. The
|
1049
|
+
# format is 'partners/`partner_id`/products/`product_id`'.
|
1050
|
+
# Corresponds to the JSON property `product`
|
1051
|
+
# @return [String]
|
1052
|
+
attr_accessor :product
|
1053
|
+
|
1054
|
+
# Output only. The time when this product is linked to an end user.
|
1055
|
+
# Corresponds to the JSON property `userAccountLinkedTime`
|
1056
|
+
# @return [String]
|
1057
|
+
attr_accessor :user_account_linked_time
|
1058
|
+
|
1059
|
+
def initialize(**args)
|
1060
|
+
update!(**args)
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
# Update properties of this object
|
1064
|
+
def update!(**args)
|
1065
|
+
@product = args[:product] if args.key?(:product)
|
1066
|
+
@user_account_linked_time = args[:user_account_linked_time] if args.key?(:user_account_linked_time)
|
1067
|
+
end
|
1068
|
+
end
|
1069
|
+
|
971
1070
|
# Details for a ONE_TIME recurrence line item.
|
972
1071
|
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemOneTimeRecurrenceDetails
|
973
1072
|
include Google::Apis::Core::Hashable
|
@@ -1137,6 +1236,50 @@ module Google
|
|
1137
1236
|
@text = args[:text] if args.key?(:text)
|
1138
1237
|
end
|
1139
1238
|
end
|
1239
|
+
|
1240
|
+
# Details for a bundle product.
|
1241
|
+
class ProductBundleDetails
|
1242
|
+
include Google::Apis::Core::Hashable
|
1243
|
+
|
1244
|
+
# The individual products that are included in the bundle.
|
1245
|
+
# Corresponds to the JSON property `bundleElements`
|
1246
|
+
# @return [Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductBundleDetailsBundleElement>]
|
1247
|
+
attr_accessor :bundle_elements
|
1248
|
+
|
1249
|
+
# The entitlement mode of the bundle product.
|
1250
|
+
# Corresponds to the JSON property `entitlementMode`
|
1251
|
+
# @return [String]
|
1252
|
+
attr_accessor :entitlement_mode
|
1253
|
+
|
1254
|
+
def initialize(**args)
|
1255
|
+
update!(**args)
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# Update properties of this object
|
1259
|
+
def update!(**args)
|
1260
|
+
@bundle_elements = args[:bundle_elements] if args.key?(:bundle_elements)
|
1261
|
+
@entitlement_mode = args[:entitlement_mode] if args.key?(:entitlement_mode)
|
1262
|
+
end
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
# The bundle details for a line item corresponding to a hard bundle.
|
1266
|
+
class SubscriptionLineItemBundleDetails
|
1267
|
+
include Google::Apis::Core::Hashable
|
1268
|
+
|
1269
|
+
# The details for each element in the hard bundle.
|
1270
|
+
# Corresponds to the JSON property `bundleElementDetails`
|
1271
|
+
# @return [Array<Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails>]
|
1272
|
+
attr_accessor :bundle_element_details
|
1273
|
+
|
1274
|
+
def initialize(**args)
|
1275
|
+
update!(**args)
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
# Update properties of this object
|
1279
|
+
def update!(**args)
|
1280
|
+
@bundle_element_details = args[:bundle_element_details] if args.key?(:bundle_element_details)
|
1281
|
+
end
|
1282
|
+
end
|
1140
1283
|
end
|
1141
1284
|
end
|
1142
1285
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module PaymentsresellersubscriptionV1
|
18
18
|
# Version of the google-apis-paymentsresellersubscription_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230924"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequestLineItemEntitlementDetails
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionResponse
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -124,6 +130,12 @@ module Google
|
|
124
130
|
include Google::Apis::Core::JsonObjectSupport
|
125
131
|
end
|
126
132
|
|
133
|
+
class GoogleCloudPaymentsResellerSubscriptionV1ProductBundleDetailsBundleElement
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
127
139
|
class GoogleCloudPaymentsResellerSubscriptionV1ProductPayload
|
128
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
141
|
|
@@ -178,6 +190,12 @@ module Google
|
|
178
190
|
include Google::Apis::Core::JsonObjectSupport
|
179
191
|
end
|
180
192
|
|
193
|
+
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
181
199
|
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemOneTimeRecurrenceDetails
|
182
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
201
|
|
@@ -220,6 +238,18 @@ module Google
|
|
220
238
|
include Google::Apis::Core::JsonObjectSupport
|
221
239
|
end
|
222
240
|
|
241
|
+
class ProductBundleDetails
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
247
|
+
class SubscriptionLineItemBundleDetails
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
|
+
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
251
|
+
end
|
252
|
+
|
223
253
|
class GoogleCloudPaymentsResellerSubscriptionV1Amount
|
224
254
|
# @private
|
225
255
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -255,6 +285,16 @@ module Google
|
|
255
285
|
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequest
|
256
286
|
# @private
|
257
287
|
class Representation < Google::Apis::Core::JsonRepresentation
|
288
|
+
collection :line_item_entitlement_details, as: 'lineItemEntitlementDetails', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequestLineItemEntitlementDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequestLineItemEntitlementDetails::Representation
|
289
|
+
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
293
|
+
class GoogleCloudPaymentsResellerSubscriptionV1EntitleSubscriptionRequestLineItemEntitlementDetails
|
294
|
+
# @private
|
295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
296
|
+
property :line_item_index, as: 'lineItemIndex'
|
297
|
+
collection :products, as: 'products'
|
258
298
|
end
|
259
299
|
end
|
260
300
|
|
@@ -357,11 +397,14 @@ module Google
|
|
357
397
|
class GoogleCloudPaymentsResellerSubscriptionV1Product
|
358
398
|
# @private
|
359
399
|
class Representation < Google::Apis::Core::JsonRepresentation
|
400
|
+
property :bundle_details, as: 'bundleDetails', class: Google::Apis::PaymentsresellersubscriptionV1::ProductBundleDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::ProductBundleDetails::Representation
|
401
|
+
|
360
402
|
property :finite_billing_cycle_details, as: 'finiteBillingCycleDetails', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails::Representation
|
361
403
|
|
362
404
|
property :name, as: 'name'
|
363
405
|
collection :price_configs, as: 'priceConfigs', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductPriceConfig::Representation
|
364
406
|
|
407
|
+
property :product_type, as: 'productType'
|
365
408
|
collection :region_codes, as: 'regionCodes'
|
366
409
|
property :subscription_billing_cycle_duration, as: 'subscriptionBillingCycleDuration', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Duration::Representation
|
367
410
|
|
@@ -370,6 +413,13 @@ module Google
|
|
370
413
|
end
|
371
414
|
end
|
372
415
|
|
416
|
+
class GoogleCloudPaymentsResellerSubscriptionV1ProductBundleDetailsBundleElement
|
417
|
+
# @private
|
418
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
419
|
+
property :product, as: 'product'
|
420
|
+
end
|
421
|
+
end
|
422
|
+
|
373
423
|
class GoogleCloudPaymentsResellerSubscriptionV1ProductPayload
|
374
424
|
# @private
|
375
425
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -475,6 +525,8 @@ module Google
|
|
475
525
|
class Representation < Google::Apis::Core::JsonRepresentation
|
476
526
|
property :amount, as: 'amount', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Amount, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1Amount::Representation
|
477
527
|
|
528
|
+
property :bundle_details, as: 'bundleDetails', class: Google::Apis::PaymentsresellersubscriptionV1::SubscriptionLineItemBundleDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::SubscriptionLineItemBundleDetails::Representation
|
529
|
+
|
478
530
|
property :description, as: 'description'
|
479
531
|
property :finite_billing_cycle_details, as: 'finiteBillingCycleDetails', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1FiniteBillingCycleDetails::Representation
|
480
532
|
|
@@ -492,6 +544,14 @@ module Google
|
|
492
544
|
end
|
493
545
|
end
|
494
546
|
|
547
|
+
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails
|
548
|
+
# @private
|
549
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
550
|
+
property :product, as: 'product'
|
551
|
+
property :user_account_linked_time, as: 'userAccountLinkedTime'
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
495
555
|
class GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemOneTimeRecurrenceDetails
|
496
556
|
# @private
|
497
557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -549,6 +609,23 @@ module Google
|
|
549
609
|
property :text, as: 'text'
|
550
610
|
end
|
551
611
|
end
|
612
|
+
|
613
|
+
class ProductBundleDetails
|
614
|
+
# @private
|
615
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
616
|
+
collection :bundle_elements, as: 'bundleElements', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductBundleDetailsBundleElement, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1ProductBundleDetailsBundleElement::Representation
|
617
|
+
|
618
|
+
property :entitlement_mode, as: 'entitlementMode'
|
619
|
+
end
|
620
|
+
end
|
621
|
+
|
622
|
+
class SubscriptionLineItemBundleDetails
|
623
|
+
# @private
|
624
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
625
|
+
collection :bundle_element_details, as: 'bundleElementDetails', class: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails, decorator: Google::Apis::PaymentsresellersubscriptionV1::GoogleCloudPaymentsResellerSubscriptionV1SubscriptionLineItemBundleDetailsBundleElementDetails::Representation
|
626
|
+
|
627
|
+
end
|
628
|
+
end
|
552
629
|
end
|
553
630
|
end
|
554
631
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-paymentsresellersubscription_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.34.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: 2023-
|
11
|
+
date: 2023-10-01 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-paymentsresellersubscription_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-paymentsresellersubscription_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-paymentsresellersubscription_v1/v0.34.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-paymentsresellersubscription_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|