update method
Updates an existing client buyer.
request
- The metadata request object.
Request parameters:
accountId
- Unique numerical account ID for the buyer of which the
client buyer is a customer; the sponsor buyer to update a client for.
(required)
clientAccountId
- Unique numerical account ID of the client to update.
(required)
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Client.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Client> update(
Client request,
core.String accountId,
core.String clientAccountId, {
core.String? $fields,
}) async {
final _body = convert.json.encode(request.toJson());
final _queryParams = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final _url = 'v2beta1/accounts/' +
commons.escapeVariable('$accountId') +
'/clients/' +
commons.escapeVariable('$clientAccountId');
final _response = await _requester.request(
_url,
'PUT',
body: _body,
queryParams: _queryParams,
);
return Client.fromJson(_response as core.Map<core.String, core.dynamic>);
}