Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2077)

Unified Diff: generated/googleapis_beta/lib/adexchangebuyer2/v2beta1.dart

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis_beta/README.md ('k') | generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis_beta/lib/adexchangebuyer2/v2beta1.dart
diff --git a/generated/googleapis_beta/lib/adexchangebuyer2/v2beta1.dart b/generated/googleapis_beta/lib/adexchangebuyer2/v2beta1.dart
index 6d1c209f098ed5dbd6dd9cf30fda32ce4d02dec6..adf1eb0566b3cb8b9eeb26c8957f57192747c5ed 100644
--- a/generated/googleapis_beta/lib/adexchangebuyer2/v2beta1.dart
+++ b/generated/googleapis_beta/lib/adexchangebuyer2/v2beta1.dart
@@ -384,10 +384,6 @@ class AccountsClientsInvitationsResourceApi {
* to list all the invitations for all the clients
* of a given sponsor buyer.
*
- * [pageSize] - Requested page size. Server may return fewer clients than
- * requested.
- * If unspecified, server will pick an appropriate default.
- *
* [pageToken] - A token identifying a page of results the server should
* return.
* Typically, this is the value of
@@ -396,6 +392,10 @@ class AccountsClientsInvitationsResourceApi {
* clients.invitations.list
* method.
*
+ * [pageSize] - Requested page size. Server may return fewer clients than
+ * requested.
+ * If unspecified, server will pick an appropriate default.
+ *
* Completes with a [ListClientUserInvitationsResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -404,7 +404,7 @@ class AccountsClientsInvitationsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListClientUserInvitationsResponse> list(core.String accountId, core.String clientAccountId, {core.int pageSize, core.String pageToken}) {
+ async.Future<ListClientUserInvitationsResponse> list(core.String accountId, core.String clientAccountId, {core.String pageToken, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -418,12 +418,12 @@ class AccountsClientsInvitationsResourceApi {
if (clientAccountId == null) {
throw new core.ArgumentError("Parameter clientAccountId is required.");
}
- if (pageSize != null) {
- _queryParams["pageSize"] = ["${pageSize}"];
- }
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
_url = 'v2beta1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/clients/' + commons.Escaper.ecapeVariable('$clientAccountId') + '/invitations';
@@ -514,10 +514,6 @@ class AccountsClientsUsersResourceApi {
* to list all the client users for all the clients
* of a given sponsor buyer.
*
- * [pageSize] - Requested page size. The server may return fewer clients than
- * requested.
- * If unspecified, the server will pick an appropriate default.
- *
* [pageToken] - A token identifying a page of results the server should
* return.
* Typically, this is the value of
@@ -525,6 +521,10 @@ class AccountsClientsUsersResourceApi {
* returned from the previous call to the
* accounts.clients.users.list method.
*
+ * [pageSize] - Requested page size. The server may return fewer clients than
+ * requested.
+ * If unspecified, the server will pick an appropriate default.
+ *
* Completes with a [ListClientUsersResponse].
*
* Completes with a [commons.ApiRequestError] if the API endpoint returned an
@@ -533,7 +533,7 @@ class AccountsClientsUsersResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ListClientUsersResponse> list(core.String accountId, core.String clientAccountId, {core.int pageSize, core.String pageToken}) {
+ async.Future<ListClientUsersResponse> list(core.String accountId, core.String clientAccountId, {core.String pageToken, core.int pageSize}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -547,12 +547,12 @@ class AccountsClientsUsersResourceApi {
if (clientAccountId == null) {
throw new core.ArgumentError("Parameter clientAccountId is required.");
}
- if (pageSize != null) {
- _queryParams["pageSize"] = ["${pageSize}"];
- }
if (pageToken != null) {
_queryParams["pageToken"] = [pageToken];
}
+ if (pageSize != null) {
+ _queryParams["pageSize"] = ["${pageSize}"];
+ }
_url = 'v2beta1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/clients/' + commons.Escaper.ecapeVariable('$clientAccountId') + '/users';
« no previous file with comments | « generated/googleapis_beta/README.md ('k') | generated/googleapis_beta/lib/clouderrorreporting/v1beta1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698