Index: generated/googleapis/lib/manufacturers/v1.dart |
diff --git a/generated/googleapis/lib/manufacturers/v1.dart b/generated/googleapis/lib/manufacturers/v1.dart |
index 98dc14f7a5e82ca766fcb78c6016ec245ceaf306..9affd685c6fdcdf09af2fcb2996abb8c2f1c0a92 100644 |
--- a/generated/googleapis/lib/manufacturers/v1.dart |
+++ b/generated/googleapis/lib/manufacturers/v1.dart |
@@ -176,12 +176,12 @@ class AccountsProductsResourceApi { |
* `account_id` - The ID of the Manufacturer Center account. |
* Value must have pattern "^accounts/[^/]+$". |
* |
- * [pageToken] - The token returned by the previous request. |
- * |
* [pageSize] - Maximum number of product statuses to return in the response, |
* used for |
* paging. |
* |
+ * [pageToken] - The token returned by the previous request. |
+ * |
* Completes with a [ListProductsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -190,7 +190,7 @@ class AccountsProductsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListProductsResponse> list(core.String parent, {core.String pageToken, core.int pageSize}) { |
+ async.Future<ListProductsResponse> list(core.String parent, {core.int pageSize, core.String pageToken}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -201,12 +201,12 @@ class AccountsProductsResourceApi { |
if (parent == null) { |
throw new core.ArgumentError("Parameter parent is required."); |
} |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
} |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
_url = 'v1/' + commons.Escaper.ecapeVariableReserved('$parent') + '/products'; |