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>>{
if (maxResults != null) 'maxResults': ['${maxResults}'],
if (startIndex != null) 'startIndex': ['${startIndex}'],
if (token != null) 'token': [token],
if (translationLanguage != null)
'translationLanguage': [translationLanguage],
if ($fields != null) 'fields': [$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>);
}