Index: generated/googleapis/lib/playmoviespartner/v1.dart |
diff --git a/generated/googleapis/lib/playmoviespartner/v1.dart b/generated/googleapis/lib/playmoviespartner/v1.dart |
index 4fb19aa82a8fa2043cd6537b61169bb6664c44d6..f24bf7caffbe1b4c72f68122f81c20be176c8b1b 100644 |
--- a/generated/googleapis/lib/playmoviespartner/v1.dart |
+++ b/generated/googleapis/lib/playmoviespartner/v1.dart |
@@ -103,8 +103,6 @@ class AccountsAvailsResourceApi { |
* [accountId] - REQUIRED. See _General rules_ for more information about this |
* field. |
* |
- * [pphNames] - See _List methods rules_ for info about this field. |
- * |
* [altId] - Filter Avails that match a case-insensitive, partner-specific |
* custom id. |
* NOTE: this field is deprecated and will be removed on V2; `alt_ids` |
@@ -130,6 +128,8 @@ class AccountsAvailsResourceApi { |
* [altIds] - Filter Avails that match (case-insensitive) any of the given |
* partner-specific custom ids. |
* |
+ * [pphNames] - See _List methods rules_ for info about this field. |
+ * |
* Completes with a [ListAvailsResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -138,7 +138,7 @@ class AccountsAvailsResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListAvailsResponse> list(core.String accountId, {core.List<core.String> pphNames, core.String altId, core.List<core.String> studioNames, core.List<core.String> territories, core.String title, core.String pageToken, core.List<core.String> videoIds, core.int pageSize, core.List<core.String> altIds}) { |
+ async.Future<ListAvailsResponse> list(core.String accountId, {core.String altId, core.List<core.String> studioNames, core.List<core.String> territories, core.String title, core.String pageToken, core.List<core.String> videoIds, core.int pageSize, core.List<core.String> altIds, core.List<core.String> pphNames}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -149,9 +149,6 @@ class AccountsAvailsResourceApi { |
if (accountId == null) { |
throw new core.ArgumentError("Parameter accountId is required."); |
} |
- if (pphNames != null) { |
- _queryParams["pphNames"] = pphNames; |
- } |
if (altId != null) { |
_queryParams["altId"] = [altId]; |
} |
@@ -176,6 +173,9 @@ class AccountsAvailsResourceApi { |
if (altIds != null) { |
_queryParams["altIds"] = altIds; |
} |
+ if (pphNames != null) { |
+ _queryParams["pphNames"] = pphNames; |
+ } |
_url = 'v1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/avails'; |
@@ -257,25 +257,25 @@ class AccountsOrdersResourceApi { |
* [accountId] - REQUIRED. See _General rules_ for more information about this |
* field. |
* |
- * [videoIds] - Filter Orders that match any of the given `video_id`s. |
- * |
- * [pageToken] - See _List methods rules_ for info about this field. |
- * |
- * [customId] - Filter Orders that match a case-insensitive, partner-specific |
- * custom id. |
- * |
- * [pageSize] - See _List methods rules_ for info about this field. |
- * |
* [pphNames] - See _List methods rules_ for info about this field. |
* |
* [status] - Filter Orders that match one of the given status. |
* |
- * [studioNames] - See _List methods rules_ for info about this field. |
- * |
* [name] - Filter that matches Orders with a `name`, `show`, `season` or |
* `episode` |
* that contains the given case-insensitive name. |
* |
+ * [studioNames] - See _List methods rules_ for info about this field. |
+ * |
+ * [videoIds] - Filter Orders that match any of the given `video_id`s. |
+ * |
+ * [customId] - Filter Orders that match a case-insensitive, partner-specific |
+ * custom id. |
+ * |
+ * [pageToken] - See _List methods rules_ for info about this field. |
+ * |
+ * [pageSize] - See _List methods rules_ for info about this field. |
+ * |
* Completes with a [ListOrdersResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -284,7 +284,7 @@ class AccountsOrdersResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListOrdersResponse> list(core.String accountId, {core.List<core.String> videoIds, core.String pageToken, core.String customId, core.int pageSize, core.List<core.String> pphNames, core.List<core.String> status, core.List<core.String> studioNames, core.String name}) { |
+ async.Future<ListOrdersResponse> list(core.String accountId, {core.List<core.String> pphNames, core.List<core.String> status, core.String name, core.List<core.String> studioNames, core.List<core.String> videoIds, core.String customId, core.String pageToken, core.int pageSize}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -295,29 +295,29 @@ class AccountsOrdersResourceApi { |
if (accountId == null) { |
throw new core.ArgumentError("Parameter accountId is required."); |
} |
- if (videoIds != null) { |
- _queryParams["videoIds"] = videoIds; |
- } |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
- } |
- if (customId != null) { |
- _queryParams["customId"] = [customId]; |
- } |
- if (pageSize != null) { |
- _queryParams["pageSize"] = ["${pageSize}"]; |
- } |
if (pphNames != null) { |
_queryParams["pphNames"] = pphNames; |
} |
if (status != null) { |
_queryParams["status"] = status; |
} |
+ if (name != null) { |
+ _queryParams["name"] = [name]; |
+ } |
if (studioNames != null) { |
_queryParams["studioNames"] = studioNames; |
} |
- if (name != null) { |
- _queryParams["name"] = [name]; |
+ if (videoIds != null) { |
+ _queryParams["videoIds"] = videoIds; |
+ } |
+ if (customId != null) { |
+ _queryParams["customId"] = [customId]; |
+ } |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
+ } |
+ if (pageSize != null) { |
+ _queryParams["pageSize"] = ["${pageSize}"]; |
} |
_url = 'v1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/orders'; |
@@ -354,15 +354,20 @@ class AccountsStoreInfosResourceApi { |
* [accountId] - REQUIRED. See _General rules_ for more information about this |
* field. |
* |
+ * [studioNames] - See _List methods rules_ for info about this field. |
+ * |
+ * [name] - Filter that matches StoreInfos with a `name` or `show_name` |
+ * that contains the given case-insensitive name. |
+ * |
* [seasonIds] - Filter StoreInfos that match any of the given `season_id`s. |
* |
- * [videoIds] - Filter StoreInfos that match any of the given `video_id`s. |
+ * [pageToken] - See _List methods rules_ for info about this field. |
* |
* [videoId] - Filter StoreInfos that match a given `video_id`. |
* NOTE: this field is deprecated and will be removed on V2; `video_ids` |
* should be used instead. |
* |
- * [pageToken] - See _List methods rules_ for info about this field. |
+ * [videoIds] - Filter StoreInfos that match any of the given `video_id`s. |
* |
* [pageSize] - See _List methods rules_ for info about this field. |
* |
@@ -374,11 +379,6 @@ class AccountsStoreInfosResourceApi { |
* given country |
* codes, using the "ISO 3166-1 alpha-2" format (examples: "US", "us", "Us"). |
* |
- * [studioNames] - See _List methods rules_ for info about this field. |
- * |
- * [name] - Filter that matches StoreInfos with a `name` or `show_name` |
- * that contains the given case-insensitive name. |
- * |
* Completes with a [ListStoreInfosResponse]. |
* |
* Completes with a [commons.ApiRequestError] if the API endpoint returned an |
@@ -387,7 +387,7 @@ class AccountsStoreInfosResourceApi { |
* If the used [http.Client] completes with an error when making a REST call, |
* this method will complete with the same error. |
*/ |
- async.Future<ListStoreInfosResponse> list(core.String accountId, {core.List<core.String> seasonIds, core.List<core.String> videoIds, core.String videoId, core.String pageToken, core.int pageSize, core.List<core.String> mids, core.List<core.String> pphNames, core.List<core.String> countries, core.List<core.String> studioNames, core.String name}) { |
+ async.Future<ListStoreInfosResponse> list(core.String accountId, {core.List<core.String> studioNames, core.String name, core.List<core.String> seasonIds, core.String pageToken, core.String videoId, core.List<core.String> videoIds, core.int pageSize, core.List<core.String> mids, core.List<core.String> pphNames, core.List<core.String> countries}) { |
var _url = null; |
var _queryParams = new core.Map(); |
var _uploadMedia = null; |
@@ -398,17 +398,23 @@ class AccountsStoreInfosResourceApi { |
if (accountId == null) { |
throw new core.ArgumentError("Parameter accountId is required."); |
} |
+ if (studioNames != null) { |
+ _queryParams["studioNames"] = studioNames; |
+ } |
+ if (name != null) { |
+ _queryParams["name"] = [name]; |
+ } |
if (seasonIds != null) { |
_queryParams["seasonIds"] = seasonIds; |
} |
- if (videoIds != null) { |
- _queryParams["videoIds"] = videoIds; |
+ if (pageToken != null) { |
+ _queryParams["pageToken"] = [pageToken]; |
} |
if (videoId != null) { |
_queryParams["videoId"] = [videoId]; |
} |
- if (pageToken != null) { |
- _queryParams["pageToken"] = [pageToken]; |
+ if (videoIds != null) { |
+ _queryParams["videoIds"] = videoIds; |
} |
if (pageSize != null) { |
_queryParams["pageSize"] = ["${pageSize}"]; |
@@ -422,12 +428,6 @@ class AccountsStoreInfosResourceApi { |
if (countries != null) { |
_queryParams["countries"] = countries; |
} |
- if (studioNames != null) { |
- _queryParams["studioNames"] = studioNames; |
- } |
- if (name != null) { |
- _queryParams["name"] = [name]; |
- } |
_url = 'v1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/storeInfos'; |