update method

Future<UserList> update(
  1. UserList request,
  2. String name, {
  3. String? $fields,
})

Updates the given user list.

Only user lists with URLRestrictions can be updated.

request - The metadata request object.

Request parameters:

name - Output only. Name of the user list that must follow the pattern buyers/{buyer}/userLists/{user_list}, where {buyer} represents the account ID of the buyer who owns the user list. For a bidder accessing user lists on behalf of a child seat buyer, {buyer} represents the account ID of the child seat buyer. {user_list} is an int64 identifier assigned by Google to uniquely identify a user list. Value must have pattern ^buyers/\[^/\]+/userLists/\[^/\]+$.

$fields - Selector specifying which fields to include in a partial response.

Completes with a UserList.

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<UserList> update(
  UserList request,
  core.String name, {
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/' + core.Uri.encodeFull('$name');

  final response_ = await _requester.request(
    url_,
    'PUT',
    body: body_,
    queryParams: queryParams_,
  );
  return UserList.fromJson(response_ as core.Map<core.String, core.dynamic>);
}