patch method

Update an idea state resource.

request - The metadata request object.

Request parameters:

name - Unique identifier for the idea state. Format: platforms/{platform}/properties/{property}/ideaStates/{idea_state} Value must have pattern ^platforms/\[^/\]+/properties/\[^/\]+/ideaStates/\[^/\]+$.

updateMask - The list of fields to be updated.

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

Completes with a GoogleSearchIdeahubV1betaIdeaState.

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<GoogleSearchIdeahubV1betaIdeaState> patch(
  GoogleSearchIdeahubV1betaIdeaState request,
  core.String name, {
  core.String? updateMask,
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if (updateMask != null) 'updateMask': [updateMask],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1beta/' + core.Uri.encodeFull('$name');

  final _response = await _requester.request(
    _url,
    'PATCH',
    body: _body,
    queryParams: _queryParams,
  );
  return GoogleSearchIdeahubV1betaIdeaState.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}