| 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';
|
|
|
|
|