update method

Update for all ClaimReview markup on a page Note that this is a full update.

To retain the existing ClaimReview markup on a page, first perform a Get operation, then modify the returned markup, and finally call Update with the entire ClaimReview markup as the body.

request - The metadata request object.

Request parameters:

name - The name of this ClaimReview markup page resource, in the form of pages/{page_id}. Except for update requests, this field is output-only and should not be set by the user. Value must have pattern ^pages/\[^/\]+$.

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

Completes with a GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage.

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<GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage>
    update(
  GoogleFactcheckingFactchecktoolsV1alpha1ClaimReviewMarkupPage request,
  core.String name, {
  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 = 'v1alpha1/' + core.Uri.encodeFull('$name');

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