listByBlog method
Lists comments by blog.
Request parameters:
blogId - null
endDate - null
fetchBodies - null
maxResults - null
pageToken - null
startDate - null
status - null
$fields - Selector specifying which fields to include in a partial
response.
Completes with a CommentList.
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<CommentList> listByBlog(
core.String blogId, {
core.String? endDate,
core.bool? fetchBodies,
core.int? maxResults,
core.String? pageToken,
core.String? startDate,
core.List<core.String>? status,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
'endDate': ?endDate == null ? null : [endDate],
'fetchBodies': ?fetchBodies == null ? null : ['${fetchBodies}'],
'maxResults': ?maxResults == null ? null : ['${maxResults}'],
'pageToken': ?pageToken == null ? null : [pageToken],
'startDate': ?startDate == null ? null : [startDate],
'status': ?status,
'fields': ?$fields == null ? null : [$fields],
};
final url_ = 'v3/blogs/' + commons.escapeVariable('$blogId') + '/comments';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return CommentList.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}