list method
- {int pageSize,
- String pageToken,
- String $fields}
Lists the user's customer accounts.
Request parameters:
pageSize
- The maximum number of customers to show in a page of results.
A number between 1 and 100 (inclusive).
pageToken
- A token specifying which result page to return.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a CustomerListCustomersResponse.
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<CustomerListCustomersResponse> list(
{core.int pageSize, core.String pageToken, core.String $fields}) {
var _url;
var _queryParams = new core.Map<core.String, core.List<core.String>>();
var _uploadMedia;
var _uploadOptions;
var _downloadOptions = commons.DownloadOptions.Metadata;
var _body;
if (pageSize != null) {
_queryParams["pageSize"] = ["${pageSize}"];
}
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
if ($fields != null) {
_queryParams["fields"] = [$fields];
}
_url = 'v1/customers';
var _response = _requester.request(_url, "GET",
body: _body,
queryParams: _queryParams,
uploadOptions: _uploadOptions,
uploadMedia: _uploadMedia,
downloadOptions: _downloadOptions);
return _response
.then((data) => new CustomerListCustomersResponse.fromJson(data));
}