list method

Future<PageList> list(
  1. String blogId, {
  2. bool? fetchBodies,
  3. int? maxResults,
  4. String? pageToken,
  5. List<String>? status,
  6. String? view,
  7. String? $fields,
})

Lists pages.

Request parameters:

blogId - null

fetchBodies - null

maxResults - null

pageToken - null

status - null

view - null Possible string values are:

  • "VIEW_TYPE_UNSPECIFIED"
  • "READER"
  • "AUTHOR"
  • "ADMIN"

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

Completes with a PageList.

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<PageList> list(
  core.String blogId, {
  core.bool? fetchBodies,
  core.int? maxResults,
  core.String? pageToken,
  core.List<core.String>? status,
  core.String? view,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (fetchBodies != null) 'fetchBodies': ['${fetchBodies}'],
    if (maxResults != null) 'maxResults': ['${maxResults}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if (status != null) 'status': status,
    if (view != null) 'view': [view],
    if ($fields != null) 'fields': [$fields],
  };

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

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