list method
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>>{
'fetchBodies': ?fetchBodies == null ? null : ['${fetchBodies}'],
'maxResults': ?maxResults == null ? null : ['${maxResults}'],
'pageToken': ?pageToken == null ? null : [pageToken],
'status': ?status,
'view': ?view == null ? null : [view],
'fields': ?$fields == null ? null : [$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>);
}