update method

Future<Page> update(
  1. Page request,
  2. String blogId,
  3. String pageId, {
  4. bool? publish_1,
  5. bool? revert_1,
  6. String? $fields,
})

Updates a page by blog id and page id.

request - The metadata request object.

Request parameters:

blogId - null

pageId - null

publish_1 - null

revert_1 - null

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

Completes with a Page.

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<Page> update(
  Page request,
  core.String blogId,
  core.String pageId, {
  core.bool? publish_1,
  core.bool? revert_1,
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if (publish_1 != null) 'publish': ['${publish_1}'],
    if (revert_1 != null) 'revert': ['${revert_1}'],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v3/blogs/' +
      commons.escapeVariable('$blogId') +
      '/pages/' +
      commons.escapeVariable('$pageId');

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