listByBlog method

Future<CommentList> listByBlog(
  1. String blogId, {
  2. String? endDate,
  3. bool? fetchBodies,
  4. int? maxResults,
  5. String? pageToken,
  6. String? startDate,
  7. List<String>? status,
  8. String? $fields,
})

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>>{
    if (endDate != null) 'endDate': [endDate],
    if (fetchBodies != null) 'fetchBodies': ['${fetchBodies}'],
    if (maxResults != null) 'maxResults': ['${maxResults}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if (startDate != null) 'startDate': [startDate],
    if (status != null) 'status': status,
    if ($fields != null) 'fields': [$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>);
}