list method
Lists all reviews.
Request parameters:
packageName - Package name of the app.
maxResults - How many results the list operation should return.
startIndex - The index of the first element to return.
token - Pagination token. If empty, list starts at the first review.
translationLanguage - Language localization code.
$fields - Selector specifying which fields to include in a partial
response.
Completes with a ReviewsListResponse.
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<ReviewsListResponse> list(
core.String packageName, {
core.int? maxResults,
core.int? startIndex,
core.String? token,
core.String? translationLanguage,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
'maxResults': ?maxResults == null ? null : ['${maxResults}'],
'startIndex': ?startIndex == null ? null : ['${startIndex}'],
'token': ?token == null ? null : [token],
'translationLanguage': ?translationLanguage == null
? null
: [translationLanguage],
'fields': ?$fields == null ? null : [$fields],
};
final url_ =
'androidpublisher/v3/applications/' +
commons.escapeVariable('$packageName') +
'/reviews';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ReviewsListResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}