google-apis-merchantapi_accounts_v1beta 0.9.0 → 0.11.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/merchantapi_accounts_v1beta/classes.rb +33 -2
- data/lib/google/apis/merchantapi_accounts_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/merchantapi_accounts_v1beta/representations.rb +14 -0
- data/lib/google/apis/merchantapi_accounts_v1beta/service.rb +82 -76
- 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: 798b3a1c29d0436e564e9707162d2a577360b89da7979bebaf902c6c0898a38c
|
4
|
+
data.tar.gz: 738039d72353471f73c2532e3a991c60bf4742232e0bc9fcc64aa8720e5aedc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51423924797dba90c9a887128d11708d00c1790ffafe8574e0b864f7239b8fce2ad8b793179445f8ee9d3d3a885c071c941e419f48ba5fb143024b891e4476df
|
7
|
+
data.tar.gz: 7adc8c929dfe8ef4a4f5653c66a7e7fb44e9d191bb3b9b69a4e01053c649322585cda1d71548e224bc4f0b6ed3d842a3679cafb4616e360758b53d92b93f185e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-merchantapi_accounts_v1beta
|
2
2
|
|
3
|
+
### v0.11.0 (2025-04-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250422
|
6
|
+
|
7
|
+
### v0.10.0 (2025-04-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250416
|
10
|
+
|
3
11
|
### v0.9.0 (2025-04-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250408
|
@@ -22,6 +22,37 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module MerchantapiAccountsV1beta
|
24
24
|
|
25
|
+
# Response message for the `AcceptTermsOfService` method.
|
26
|
+
class AcceptTermsOfServiceResponse
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# This resource represents the agreement state for a given account and terms of
|
30
|
+
# service kind. The state is as follows: * If the merchant has accepted a terms
|
31
|
+
# of service, `accepted` will be populated, otherwise it will be empty * If the
|
32
|
+
# merchant must sign a terms of service, `required` will be populated, otherwise
|
33
|
+
# it will be empty. Note that both `required` and `accepted` can be present. In
|
34
|
+
# this case the `accepted` terms of services will have an expiration date set in
|
35
|
+
# the `valid_until` field. The `required` terms of services need to be accepted
|
36
|
+
# before `valid_until` in order for the account to continue having a valid
|
37
|
+
# agreement. When accepting new terms of services we expect 3Ps to display the
|
38
|
+
# text associated with the given terms of service agreement (the url to the file
|
39
|
+
# containing the text is added in the Required message below as `tos_file_uri`.
|
40
|
+
# The actual acceptance of the terms of service is done by calling accept on the
|
41
|
+
# `TermsOfService` resource.
|
42
|
+
# Corresponds to the JSON property `termsOfServiceAgreementState`
|
43
|
+
# @return [Google::Apis::MerchantapiAccountsV1beta::TermsOfServiceAgreementState]
|
44
|
+
attr_accessor :terms_of_service_agreement_state
|
45
|
+
|
46
|
+
def initialize(**args)
|
47
|
+
update!(**args)
|
48
|
+
end
|
49
|
+
|
50
|
+
# Update properties of this object
|
51
|
+
def update!(**args)
|
52
|
+
@terms_of_service_agreement_state = args[:terms_of_service_agreement_state] if args.key?(:terms_of_service_agreement_state)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
25
56
|
# Describes the accepted terms of service.
|
26
57
|
class Accepted
|
27
58
|
include Google::Apis::Core::Hashable
|
@@ -2672,8 +2703,8 @@ module Google
|
|
2672
2703
|
attr_accessor :active
|
2673
2704
|
alias_method :active?, :active
|
2674
2705
|
|
2675
|
-
# The CLDR code of the currency to which this service applies. Must
|
2676
|
-
# of the prices in rate groups.
|
2706
|
+
# Required. The CLDR code of the currency to which this service applies. Must
|
2707
|
+
# match that of the prices in rate groups.
|
2677
2708
|
# Corresponds to the JSON property `currencyCode`
|
2678
2709
|
# @return [String]
|
2679
2710
|
attr_accessor :currency_code
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MerchantapiAccountsV1beta
|
18
18
|
# Version of the google-apis-merchantapi_accounts_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250422"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module MerchantapiAccountsV1beta
|
24
24
|
|
25
|
+
class AcceptTermsOfServiceResponse
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class Accepted
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -538,6 +544,14 @@ module Google
|
|
538
544
|
include Google::Apis::Core::JsonObjectSupport
|
539
545
|
end
|
540
546
|
|
547
|
+
class AcceptTermsOfServiceResponse
|
548
|
+
# @private
|
549
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
550
|
+
property :terms_of_service_agreement_state, as: 'termsOfServiceAgreementState', class: Google::Apis::MerchantapiAccountsV1beta::TermsOfServiceAgreementState, decorator: Google::Apis::MerchantapiAccountsV1beta::TermsOfServiceAgreementState::Representation
|
551
|
+
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
541
555
|
class Accepted
|
542
556
|
# @private
|
543
557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -152,37 +152,6 @@ module Google
|
|
152
152
|
execute_or_queue_command(command, &block)
|
153
153
|
end
|
154
154
|
|
155
|
-
# Retrieves the automatic improvements of an account.
|
156
|
-
# @param [String] name
|
157
|
-
# Required. The resource name of the automatic improvements. Format: `accounts/`
|
158
|
-
# account`/automaticImprovements`
|
159
|
-
# @param [String] fields
|
160
|
-
# Selector specifying which fields to include in a partial response.
|
161
|
-
# @param [String] quota_user
|
162
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
163
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
164
|
-
# @param [Google::Apis::RequestOptions] options
|
165
|
-
# Request-specific options
|
166
|
-
#
|
167
|
-
# @yield [result, err] Result & error if block supplied
|
168
|
-
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] parsed result object
|
169
|
-
# @yieldparam err [StandardError] error object if request failed
|
170
|
-
#
|
171
|
-
# @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements]
|
172
|
-
#
|
173
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
174
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
175
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
176
|
-
def get_account_automatic_improvements(name, fields: nil, quota_user: nil, options: nil, &block)
|
177
|
-
command = make_simple_command(:get, 'accounts/v1beta/{+name}', options)
|
178
|
-
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
|
179
|
-
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements
|
180
|
-
command.params['name'] = name unless name.nil?
|
181
|
-
command.query['fields'] = fields unless fields.nil?
|
182
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
183
|
-
execute_or_queue_command(command, &block)
|
184
|
-
end
|
185
|
-
|
186
155
|
# Lists accounts accessible to the calling user and matching the constraints of
|
187
156
|
# the request such as page size or filters. This is not just listing the sub-
|
188
157
|
# accounts of an MCA, but all accounts the calling user has access to including
|
@@ -241,7 +210,7 @@ module Google
|
|
241
210
|
# the same results as calling `ListsAccounts` with the following filter: `
|
242
211
|
# relationship(providerId=`parent` AND service(type="ACCOUNT_AGGREGATION"))`
|
243
212
|
# @param [String] provider
|
244
|
-
# Required. The aggregation service provider. Format: `
|
213
|
+
# Required. The aggregation service provider. Format: `accounts/`providerId``
|
245
214
|
# @param [Fixnum] page_size
|
246
215
|
# Optional. The maximum number of accounts to return. The service may return
|
247
216
|
# fewer than this value. If unspecified, at most 250 accounts are returned. The
|
@@ -318,17 +287,10 @@ module Google
|
|
318
287
|
execute_or_queue_command(command, &block)
|
319
288
|
end
|
320
289
|
|
321
|
-
#
|
290
|
+
# Retrieves the autofeed settings of an account.
|
322
291
|
# @param [String] name
|
323
|
-
#
|
324
|
-
#
|
325
|
-
# @param [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] automatic_improvements_object
|
326
|
-
# @param [String] update_mask
|
327
|
-
# Required. List of fields being updated. The following fields are supported (in
|
328
|
-
# both `snake_case` and `lowerCamelCase`): - `item_updates` - `item_updates.
|
329
|
-
# account_level_settings` - `image_improvements` - `image_improvements.
|
330
|
-
# account_level_settings` - `shipping_improvements` - `shipping_improvements.
|
331
|
-
# allow_shipping_improvements`
|
292
|
+
# Required. The resource name of the autofeed settings. Format: `accounts/`
|
293
|
+
# account`/autofeedSettings`
|
332
294
|
# @param [String] fields
|
333
295
|
# Selector specifying which fields to include in a partial response.
|
334
296
|
# @param [String] quota_user
|
@@ -338,31 +300,31 @@ module Google
|
|
338
300
|
# Request-specific options
|
339
301
|
#
|
340
302
|
# @yield [result, err] Result & error if block supplied
|
341
|
-
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::
|
303
|
+
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings] parsed result object
|
342
304
|
# @yieldparam err [StandardError] error object if request failed
|
343
305
|
#
|
344
|
-
# @return [Google::Apis::MerchantapiAccountsV1beta::
|
306
|
+
# @return [Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings]
|
345
307
|
#
|
346
308
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
347
309
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
348
310
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
349
|
-
def
|
350
|
-
command = make_simple_command(:
|
351
|
-
command.
|
352
|
-
command.
|
353
|
-
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
|
354
|
-
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements
|
311
|
+
def get_account_autofeed_setting_autofeed_settings(name, fields: nil, quota_user: nil, options: nil, &block)
|
312
|
+
command = make_simple_command(:get, 'accounts/v1beta/{+name}', options)
|
313
|
+
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings::Representation
|
314
|
+
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings
|
355
315
|
command.params['name'] = name unless name.nil?
|
356
|
-
command.query['updateMask'] = update_mask unless update_mask.nil?
|
357
316
|
command.query['fields'] = fields unless fields.nil?
|
358
317
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
359
318
|
execute_or_queue_command(command, &block)
|
360
319
|
end
|
361
320
|
|
362
|
-
#
|
321
|
+
# Updates the autofeed settings of an account.
|
363
322
|
# @param [String] name
|
364
|
-
#
|
365
|
-
# account`/autofeedSettings
|
323
|
+
# Identifier. The resource name of the autofeed settings. Format: `accounts/`
|
324
|
+
# account`/autofeedSettings`.
|
325
|
+
# @param [Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings] autofeed_settings_object
|
326
|
+
# @param [String] update_mask
|
327
|
+
# Required. List of fields being updated.
|
366
328
|
# @param [String] fields
|
367
329
|
# Selector specifying which fields to include in a partial response.
|
368
330
|
# @param [String] quota_user
|
@@ -380,23 +342,61 @@ module Google
|
|
380
342
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
381
343
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
382
344
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
383
|
-
def
|
384
|
-
command = make_simple_command(:
|
345
|
+
def update_account_autofeed_setting_autofeed_settings(name, autofeed_settings_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
346
|
+
command = make_simple_command(:patch, 'accounts/v1beta/{+name}', options)
|
347
|
+
command.request_representation = Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings::Representation
|
348
|
+
command.request_object = autofeed_settings_object
|
385
349
|
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings::Representation
|
386
350
|
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutofeedSettings
|
387
351
|
command.params['name'] = name unless name.nil?
|
352
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
388
353
|
command.query['fields'] = fields unless fields.nil?
|
389
354
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
390
355
|
execute_or_queue_command(command, &block)
|
391
356
|
end
|
392
357
|
|
393
|
-
#
|
358
|
+
# Retrieves the automatic improvements of an account.
|
394
359
|
# @param [String] name
|
395
|
-
#
|
396
|
-
# account`/
|
397
|
-
# @param [
|
360
|
+
# Required. The resource name of the automatic improvements. Format: `accounts/`
|
361
|
+
# account`/automaticImprovements`
|
362
|
+
# @param [String] fields
|
363
|
+
# Selector specifying which fields to include in a partial response.
|
364
|
+
# @param [String] quota_user
|
365
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
366
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
367
|
+
# @param [Google::Apis::RequestOptions] options
|
368
|
+
# Request-specific options
|
369
|
+
#
|
370
|
+
# @yield [result, err] Result & error if block supplied
|
371
|
+
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] parsed result object
|
372
|
+
# @yieldparam err [StandardError] error object if request failed
|
373
|
+
#
|
374
|
+
# @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements]
|
375
|
+
#
|
376
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
377
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
378
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
379
|
+
def get_account_automatic_improvement_automatic_improvements(name, fields: nil, quota_user: nil, options: nil, &block)
|
380
|
+
command = make_simple_command(:get, 'accounts/v1beta/{+name}', options)
|
381
|
+
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
|
382
|
+
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements
|
383
|
+
command.params['name'] = name unless name.nil?
|
384
|
+
command.query['fields'] = fields unless fields.nil?
|
385
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
386
|
+
execute_or_queue_command(command, &block)
|
387
|
+
end
|
388
|
+
|
389
|
+
# Updates the automatic improvements of an account.
|
390
|
+
# @param [String] name
|
391
|
+
# Identifier. The resource name of the automatic improvements. Format: `accounts/
|
392
|
+
# `account`/automaticImprovements`.
|
393
|
+
# @param [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] automatic_improvements_object
|
398
394
|
# @param [String] update_mask
|
399
|
-
# Required. List of fields being updated.
|
395
|
+
# Required. List of fields being updated. The following fields are supported (in
|
396
|
+
# both `snake_case` and `lowerCamelCase`): - `item_updates` - `item_updates.
|
397
|
+
# account_level_settings` - `image_improvements` - `image_improvements.
|
398
|
+
# account_level_settings` - `shipping_improvements` - `shipping_improvements.
|
399
|
+
# allow_shipping_improvements`
|
400
400
|
# @param [String] fields
|
401
401
|
# Selector specifying which fields to include in a partial response.
|
402
402
|
# @param [String] quota_user
|
@@ -406,20 +406,20 @@ module Google
|
|
406
406
|
# Request-specific options
|
407
407
|
#
|
408
408
|
# @yield [result, err] Result & error if block supplied
|
409
|
-
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::
|
409
|
+
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements] parsed result object
|
410
410
|
# @yieldparam err [StandardError] error object if request failed
|
411
411
|
#
|
412
|
-
# @return [Google::Apis::MerchantapiAccountsV1beta::
|
412
|
+
# @return [Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements]
|
413
413
|
#
|
414
414
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
415
415
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
416
416
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
417
|
-
def
|
417
|
+
def update_account_automatic_improvement_automatic_improvements(name, automatic_improvements_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
418
418
|
command = make_simple_command(:patch, 'accounts/v1beta/{+name}', options)
|
419
|
-
command.request_representation = Google::Apis::MerchantapiAccountsV1beta::
|
420
|
-
command.request_object =
|
421
|
-
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::
|
422
|
-
command.response_class = Google::Apis::MerchantapiAccountsV1beta::
|
419
|
+
command.request_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
|
420
|
+
command.request_object = automatic_improvements_object
|
421
|
+
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements::Representation
|
422
|
+
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AutomaticImprovements
|
423
423
|
command.params['name'] = name unless name.nil?
|
424
424
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
425
425
|
command.query['fields'] = fields unless fields.nil?
|
@@ -791,7 +791,11 @@ module Google
|
|
791
791
|
execute_or_queue_command(command, &block)
|
792
792
|
end
|
793
793
|
|
794
|
-
# Lists all account issues of a Merchant Center account.
|
794
|
+
# Lists all account issues of a Merchant Center account. When called on a multi-
|
795
|
+
# client account, this method only returns issues belonging to that account, not
|
796
|
+
# its sub-accounts. To retrieve issues for sub-accounts, you must first call the
|
797
|
+
# accounts.listSubaccounts method to obtain a list of sub-accounts, and then
|
798
|
+
# call `accounts.issues.list` for each sub-account individually.
|
795
799
|
# @param [String] parent
|
796
800
|
# Required. The parent, which owns this collection of issues. Format: `accounts/`
|
797
801
|
# account``
|
@@ -1274,8 +1278,10 @@ module Google
|
|
1274
1278
|
# Replace the shipping setting of a merchant with the request shipping setting.
|
1275
1279
|
# Executing this method requires admin access.
|
1276
1280
|
# @param [String] parent
|
1277
|
-
# Required. The account
|
1278
|
-
# account
|
1281
|
+
# Required. The account for which this shipping setting will be inserted. If you
|
1282
|
+
# are using an advanced account, you must specify the unique identifier of the
|
1283
|
+
# sub-account for which you want to insert the shipping setting. Format: `
|
1284
|
+
# accounts/`ACCOUNT_ID``
|
1279
1285
|
# @param [Google::Apis::MerchantapiAccountsV1beta::ShippingSettings] shipping_settings_object
|
1280
1286
|
# @param [String] fields
|
1281
1287
|
# Selector specifying which fields to include in a partial response.
|
@@ -1573,18 +1579,18 @@ module Google
|
|
1573
1579
|
# Request-specific options
|
1574
1580
|
#
|
1575
1581
|
# @yield [result, err] Result & error if block supplied
|
1576
|
-
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::
|
1582
|
+
# @yieldparam result [Google::Apis::MerchantapiAccountsV1beta::AcceptTermsOfServiceResponse] parsed result object
|
1577
1583
|
# @yieldparam err [StandardError] error object if request failed
|
1578
1584
|
#
|
1579
|
-
# @return [Google::Apis::MerchantapiAccountsV1beta::
|
1585
|
+
# @return [Google::Apis::MerchantapiAccountsV1beta::AcceptTermsOfServiceResponse]
|
1580
1586
|
#
|
1581
1587
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1582
1588
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1583
1589
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1584
1590
|
def accept_terms_of_service(name, account: nil, region_code: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1585
|
-
command = make_simple_command(:
|
1586
|
-
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::
|
1587
|
-
command.response_class = Google::Apis::MerchantapiAccountsV1beta::
|
1591
|
+
command = make_simple_command(:post, 'accounts/v1beta/{+name}:accept', options)
|
1592
|
+
command.response_representation = Google::Apis::MerchantapiAccountsV1beta::AcceptTermsOfServiceResponse::Representation
|
1593
|
+
command.response_class = Google::Apis::MerchantapiAccountsV1beta::AcceptTermsOfServiceResponse
|
1588
1594
|
command.params['name'] = name unless name.nil?
|
1589
1595
|
command.query['account'] = account unless account.nil?
|
1590
1596
|
command.query['regionCode'] = region_code unless region_code.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-merchantapi_accounts_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-04-
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-merchantapi_accounts_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_accounts_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-merchantapi_accounts_v1beta/v0.11.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-merchantapi_accounts_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|