list method
Lists all in-app products - both managed products and subscriptions.
If an app has a large number of in-app products, the response may be
paginated. In this case the response field tokenPagination.nextPageToken
will be set and the caller should provide its value as a token
request
parameter to retrieve the next page. This method should no longer be used
to retrieve subscriptions. See
this article
for more information.
Request parameters:
packageName
- Package name of the app.
maxResults
- Deprecated and ignored. The page size is determined by the
server.
startIndex
- Deprecated and ignored. Set the token
parameter to
retrieve the next page.
token
- Pagination token. If empty, list starts at the first product.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a InappproductsListResponse.
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<InappproductsListResponse> list(
core.String packageName, {
core.int? maxResults,
core.int? startIndex,
core.String? token,
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 ($fields != null) 'fields': [$fields],
};
final url_ = 'androidpublisher/v3/applications/' +
commons.escapeVariable('$packageName') +
'/inappproducts';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return InappproductsListResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}