| Index: generated/googleapis/lib/playmoviespartner/v1.dart
|
| diff --git a/generated/googleapis/lib/playmoviespartner/v1.dart b/generated/googleapis/lib/playmoviespartner/v1.dart
|
| index b5f9190d3caf63b03dba9e8fc9d0ea15fe331f92..f6568d4533346bbbac61965bf569ce8d573638cf 100644
|
| --- a/generated/googleapis/lib/playmoviespartner/v1.dart
|
| +++ b/generated/googleapis/lib/playmoviespartner/v1.dart
|
| @@ -93,40 +93,42 @@ class AccountsAvailsResourceApi {
|
| }
|
|
|
| /**
|
| - * List Avails owned or managed by the partner. See _Authentication and
|
| - * Authorization rules_ and _List methods rules_ for more information about
|
| - * this method.
|
| + * List Avails owned or managed by the partner.
|
| + *
|
| + * See _Authentication and Authorization rules_ and
|
| + * _List methods rules_ for more information about this method.
|
| *
|
| * Request parameters:
|
| *
|
| * [accountId] - REQUIRED. See _General rules_ for more information about this
|
| * field.
|
| *
|
| - * [pageSize] - See _List methods rules_ for info about this field.
|
| - *
|
| * [pageToken] - See _List methods rules_ for info about this field.
|
| *
|
| - * [pphNames] - See _List methods rules_ for info about this field.
|
| + * [videoIds] - Filter Avails that match any of the given `video_id`s.
|
| *
|
| - * [studioNames] - See _List methods rules_ for info about this field.
|
| + * [pageSize] - See _List methods rules_ for info about this field.
|
| *
|
| - * [title] - Filter that matches Avails with a `title_internal_alias`,
|
| - * `series_title_internal_alias`, `season_title_internal_alias`, or
|
| - * `episode_title_internal_alias` that contains the given case-insensitive
|
| - * title.
|
| + * [altIds] - Filter Avails that match (case-insensitive) any of the given
|
| + * partner-specific custom ids.
|
| *
|
| - * [territories] - Filter Avails that match (case-insensitive) any of the
|
| - * given country codes, using the "ISO 3166-1 alpha-2" format (examples: "US",
|
| - * "us", "Us").
|
| + * [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` should be used instead.
|
| + * custom id.
|
| + * NOTE: this field is deprecated and will be removed on V2; `alt_ids`
|
| + * should be used instead.
|
| *
|
| - * [videoIds] - Filter Avails that match any of the given `video_id`s.
|
| + * [studioNames] - See _List methods rules_ for info about this field.
|
| *
|
| - * [altIds] - Filter Avails that match (case-insensitive) any of the given
|
| - * partner-specific custom ids.
|
| + * [territories] - Filter Avails that match (case-insensitive) any of the
|
| + * given country codes,
|
| + * using the "ISO 3166-1 alpha-2" format (examples: "US", "us", "Us").
|
| + *
|
| + * [title] - Filter that matches Avails with a `title_internal_alias`,
|
| + * `series_title_internal_alias`, `season_title_internal_alias`,
|
| + * or `episode_title_internal_alias` that contains the given
|
| + * case-insensitive title.
|
| *
|
| * Completes with a [ListAvailsResponse].
|
| *
|
| @@ -136,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.int pageSize, core.String pageToken, core.List<core.String> pphNames, core.List<core.String> studioNames, core.String title, core.List<core.String> territories, core.String altId, core.List<core.String> videoIds, core.List<core.String> altIds}) {
|
| + async.Future<ListAvailsResponse> list(core.String accountId, {core.String pageToken, core.List<core.String> videoIds, core.int pageSize, core.List<core.String> altIds, core.List<core.String> pphNames, core.String altId, core.List<core.String> studioNames, core.List<core.String> territories, core.String title}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -147,32 +149,32 @@ class AccountsAvailsResourceApi {
|
| if (accountId == null) {
|
| throw new core.ArgumentError("Parameter accountId is required.");
|
| }
|
| + if (pageToken != null) {
|
| + _queryParams["pageToken"] = [pageToken];
|
| + }
|
| + if (videoIds != null) {
|
| + _queryParams["videoIds"] = videoIds;
|
| + }
|
| if (pageSize != null) {
|
| _queryParams["pageSize"] = ["${pageSize}"];
|
| }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| + if (altIds != null) {
|
| + _queryParams["altIds"] = altIds;
|
| }
|
| if (pphNames != null) {
|
| _queryParams["pphNames"] = pphNames;
|
| }
|
| + if (altId != null) {
|
| + _queryParams["altId"] = [altId];
|
| + }
|
| if (studioNames != null) {
|
| _queryParams["studioNames"] = studioNames;
|
| }
|
| - if (title != null) {
|
| - _queryParams["title"] = [title];
|
| - }
|
| if (territories != null) {
|
| _queryParams["territories"] = territories;
|
| }
|
| - if (altId != null) {
|
| - _queryParams["altId"] = [altId];
|
| - }
|
| - if (videoIds != null) {
|
| - _queryParams["videoIds"] = videoIds;
|
| - }
|
| - if (altIds != null) {
|
| - _queryParams["altIds"] = altIds;
|
| + if (title != null) {
|
| + _queryParams["title"] = [title];
|
| }
|
|
|
| _url = 'v1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/avails';
|
| @@ -197,7 +199,9 @@ class AccountsOrdersResourceApi {
|
| _requester = client;
|
|
|
| /**
|
| - * Get an Order given its id. See _Authentication and Authorization rules_ and
|
| + * Get an Order given its id.
|
| + *
|
| + * See _Authentication and Authorization rules_ and
|
| * _Get methods rules_ for more information about this method.
|
| *
|
| * Request parameters:
|
| @@ -243,32 +247,34 @@ class AccountsOrdersResourceApi {
|
| }
|
|
|
| /**
|
| - * List Orders owned or managed by the partner. See _Authentication and
|
| - * Authorization rules_ and _List methods rules_ for more information about
|
| - * this method.
|
| + * List Orders owned or managed by the partner.
|
| + *
|
| + * See _Authentication and Authorization rules_ and
|
| + * _List methods rules_ for more information about this method.
|
| *
|
| * Request parameters:
|
| *
|
| * [accountId] - REQUIRED. See _General rules_ for more information about this
|
| * field.
|
| *
|
| - * [pageSize] - See _List methods rules_ for info 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.
|
| *
|
| - * [pphNames] - See _List methods rules_ for info about this field.
|
| + * [pageToken] - See _List methods rules_ for info about this field.
|
| *
|
| - * [studioNames] - See _List methods rules_ for info about this field.
|
| + * [pageSize] - 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.
|
| + * [pphNames] - See _List methods rules_ for info about this field.
|
| *
|
| * [status] - Filter Orders that match one of the given status.
|
| *
|
| - * [customId] - Filter Orders that match a case-insensitive, partner-specific
|
| - * custom id.
|
| + * [studioNames] - See _List methods rules_ for info about this field.
|
| *
|
| - * [videoIds] - Filter Orders that match any of the given `video_id`s.
|
| + * [name] - Filter that matches Orders with a `name`, `show`, `season` or
|
| + * `episode`
|
| + * that contains the given case-insensitive name.
|
| *
|
| * Completes with a [ListOrdersResponse].
|
| *
|
| @@ -278,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.int pageSize, core.String pageToken, core.List<core.String> pphNames, core.List<core.String> studioNames, core.String name, core.List<core.String> status, core.String customId, core.List<core.String> videoIds}) {
|
| + async.Future<ListOrdersResponse> list(core.String accountId, {core.List<core.String> videoIds, core.String customId, core.String pageToken, core.int pageSize, core.List<core.String> pphNames, core.List<core.String> status, core.List<core.String> studioNames, core.String name}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -289,30 +295,30 @@ class AccountsOrdersResourceApi {
|
| if (accountId == null) {
|
| throw new core.ArgumentError("Parameter accountId is required.");
|
| }
|
| - if (pageSize != null) {
|
| - _queryParams["pageSize"] = ["${pageSize}"];
|
| + if (videoIds != null) {
|
| + _queryParams["videoIds"] = videoIds;
|
| + }
|
| + if (customId != null) {
|
| + _queryParams["customId"] = [customId];
|
| }
|
| if (pageToken != null) {
|
| _queryParams["pageToken"] = [pageToken];
|
| }
|
| + if (pageSize != null) {
|
| + _queryParams["pageSize"] = ["${pageSize}"];
|
| + }
|
| if (pphNames != null) {
|
| _queryParams["pphNames"] = pphNames;
|
| }
|
| + if (status != null) {
|
| + _queryParams["status"] = status;
|
| + }
|
| if (studioNames != null) {
|
| _queryParams["studioNames"] = studioNames;
|
| }
|
| if (name != null) {
|
| _queryParams["name"] = [name];
|
| }
|
| - if (status != null) {
|
| - _queryParams["status"] = status;
|
| - }
|
| - if (customId != null) {
|
| - _queryParams["customId"] = [customId];
|
| - }
|
| - if (videoIds != null) {
|
| - _queryParams["videoIds"] = videoIds;
|
| - }
|
|
|
| _url = 'v1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/orders';
|
|
|
| @@ -338,39 +344,40 @@ class AccountsStoreInfosResourceApi {
|
| _requester = client;
|
|
|
| /**
|
| - * List StoreInfos owned or managed by the partner. See _Authentication and
|
| - * Authorization rules_ and _List methods rules_ for more information about
|
| - * this method.
|
| + * List StoreInfos owned or managed by the partner.
|
| + *
|
| + * See _Authentication and Authorization rules_ and
|
| + * _List methods rules_ for more information about this method.
|
| *
|
| * Request parameters:
|
| *
|
| * [accountId] - REQUIRED. See _General rules_ for more information about this
|
| * field.
|
| *
|
| - * [pageSize] - See _List methods rules_ for info about this field.
|
| - *
|
| - * [pageToken] - See _List methods rules_ for info about this field.
|
| + * [studioNames] - See _List methods rules_ for info about this field.
|
| *
|
| - * [pphNames] - 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.
|
| *
|
| - * [studioNames] - See _List methods rules_ for info about this field.
|
| + * [seasonIds] - Filter StoreInfos that match any of the given `season_id`s.
|
| *
|
| - * [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.
|
| + * [videoIds] - Filter StoreInfos that match any of the given `video_id`s.
|
| *
|
| - * [countries] - Filter StoreInfos that match (case-insensitive) any of the
|
| - * given country codes, using the "ISO 3166-1 alpha-2" format (examples: "US",
|
| - * "us", "Us").
|
| + * [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.
|
| *
|
| - * [name] - Filter that matches StoreInfos with a `name` or `show_name` that
|
| - * contains the given case-insensitive name.
|
| + * [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.
|
| *
|
| * [mids] - Filter StoreInfos that match any of the given `mid`s.
|
| *
|
| - * [seasonIds] - Filter StoreInfos that match any of the given `season_id`s.
|
| + * [pphNames] - See _List methods rules_ for info about this field.
|
| + *
|
| + * [countries] - Filter StoreInfos that match (case-insensitive) any of the
|
| + * given country
|
| + * codes, using the "ISO 3166-1 alpha-2" format (examples: "US", "us", "Us").
|
| *
|
| * Completes with a [ListStoreInfosResponse].
|
| *
|
| @@ -380,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.int pageSize, core.String pageToken, core.List<core.String> pphNames, core.List<core.String> studioNames, core.String videoId, core.List<core.String> countries, core.String name, core.List<core.String> videoIds, core.List<core.String> mids, core.List<core.String> seasonIds}) {
|
| + async.Future<ListStoreInfosResponse> list(core.String accountId, {core.List<core.String> studioNames, core.String name, 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}) {
|
| var _url = null;
|
| var _queryParams = new core.Map();
|
| var _uploadMedia = null;
|
| @@ -391,35 +398,35 @@ class AccountsStoreInfosResourceApi {
|
| if (accountId == null) {
|
| throw new core.ArgumentError("Parameter accountId is required.");
|
| }
|
| - if (pageSize != null) {
|
| - _queryParams["pageSize"] = ["${pageSize}"];
|
| - }
|
| - if (pageToken != null) {
|
| - _queryParams["pageToken"] = [pageToken];
|
| - }
|
| - if (pphNames != null) {
|
| - _queryParams["pphNames"] = pphNames;
|
| - }
|
| if (studioNames != null) {
|
| _queryParams["studioNames"] = studioNames;
|
| }
|
| - if (videoId != null) {
|
| - _queryParams["videoId"] = [videoId];
|
| - }
|
| - if (countries != null) {
|
| - _queryParams["countries"] = countries;
|
| - }
|
| if (name != null) {
|
| _queryParams["name"] = [name];
|
| }
|
| + if (seasonIds != null) {
|
| + _queryParams["seasonIds"] = seasonIds;
|
| + }
|
| if (videoIds != null) {
|
| _queryParams["videoIds"] = videoIds;
|
| }
|
| + if (videoId != null) {
|
| + _queryParams["videoId"] = [videoId];
|
| + }
|
| + if (pageToken != null) {
|
| + _queryParams["pageToken"] = [pageToken];
|
| + }
|
| + if (pageSize != null) {
|
| + _queryParams["pageSize"] = ["${pageSize}"];
|
| + }
|
| if (mids != null) {
|
| _queryParams["mids"] = mids;
|
| }
|
| - if (seasonIds != null) {
|
| - _queryParams["seasonIds"] = seasonIds;
|
| + if (pphNames != null) {
|
| + _queryParams["pphNames"] = pphNames;
|
| + }
|
| + if (countries != null) {
|
| + _queryParams["countries"] = countries;
|
| }
|
|
|
| _url = 'v1/accounts/' + commons.Escaper.ecapeVariable('$accountId') + '/storeInfos';
|
| @@ -444,9 +451,10 @@ class AccountsStoreInfosCountryResourceApi {
|
| _requester = client;
|
|
|
| /**
|
| - * Get a StoreInfo given its video id and country. See _Authentication and
|
| - * Authorization rules_ and _Get methods rules_ for more information about
|
| - * this method.
|
| + * Get a StoreInfo given its video id and country.
|
| + *
|
| + * See _Authentication and Authorization rules_ and
|
| + * _Get methods rules_ for more information about this method.
|
| *
|
| * Request parameters:
|
| *
|
| @@ -502,190 +510,233 @@ class AccountsStoreInfosCountryResourceApi {
|
| /**
|
| * An Avail describes the Availability Window of a specific Edit in a given
|
| * country, which means the period Google is allowed to sell or rent the Edit.
|
| + *
|
| * Avails are exposed in EMA format Version 1.6b (available at
|
| - * http://www.movielabs.com/md/avails/) Studios can see the Avails for the
|
| - * Titles they own. Post-production houses cannot see any Avails.
|
| + * http://www.movielabs.com/md/avails/)
|
| + *
|
| + * Studios can see the Avails for the Titles they own.
|
| + * Post-production houses cannot see any Avails.
|
| */
|
| class Avail {
|
| /**
|
| - * Other identifier referring to the Edit, as defined by partner. Example:
|
| - * "GOOGLER_2006"
|
| + * Other identifier referring to the Edit, as defined by partner.
|
| + * Example: "GOOGLER_2006"
|
| */
|
| core.String altId;
|
| /**
|
| - * ID internally generated by Google to uniquely identify an Avail. Not part
|
| - * of EMA Specs.
|
| + * ID internally generated by Google to uniquely identify an Avail.
|
| + * Not part of EMA Specs.
|
| */
|
| core.String availId;
|
| /**
|
| - * Communicating an exempt category as defined by FCC regulations. It is not
|
| - * required for non-US Avails. Example: "1"
|
| + * Communicating an exempt category as defined by FCC regulations.
|
| + * It is not required for non-US Avails.
|
| + * Example: "1"
|
| */
|
| core.String captionExemption;
|
| /** Communicating if caption file will be delivered. */
|
| core.bool captionIncluded;
|
| /**
|
| - * Title Identifier. This should be the Title Level EIDR. Example:
|
| - * "10.5240/1489-49A2-3956-4B2D-FE16-5".
|
| + * Title Identifier. This should be the Title Level EIDR.
|
| + * Example: "10.5240/1489-49A2-3956-4B2D-FE16-5".
|
| */
|
| core.String contentId;
|
| /**
|
| - * The name of the studio that owns the Edit referred in the Avail. This is
|
| - * the equivalent of `studio_name` in other resources, but it follows the EMA
|
| - * nomenclature. Example: "Google Films".
|
| + * The name of the studio that owns the Edit referred in the Avail.
|
| + * This is the equivalent of `studio_name` in other resources, but it follows
|
| + * the EMA nomenclature.
|
| + * Example: "Google Films".
|
| */
|
| core.String displayName;
|
| /**
|
| - * Manifestation Identifier. This should be the Manifestation Level EIDR.
|
| + * Manifestation Identifier. This should be the Manifestation
|
| + * Level EIDR.
|
| * Example: "10.2340/1489-49A2-3956-4B2D-FE16-7"
|
| */
|
| core.String encodeId;
|
| /**
|
| - * End of term in YYYY-MM-DD format in the timezone of the country of the
|
| - * Avail. "Open" if no end date is available. Example: "2019-02-17"
|
| + * End of term in YYYY-MM-DD format in the timezone of the country
|
| + * of the Avail.
|
| + * "Open" if no end date is available.
|
| + * Example: "2019-02-17"
|
| */
|
| core.String end;
|
| /**
|
| - * Other identifier referring to the episode, as defined by partner. Only
|
| - * available on TV avails. Example: "rs_googlers_s1_3".
|
| + * Other identifier referring to the episode, as defined by partner.
|
| + * Only available on TV avails.
|
| + * Example: "rs_googlers_s1_3".
|
| */
|
| core.String episodeAltId;
|
| /**
|
| - * The number assigned to the episode within a season. Only available on TV
|
| - * Avails. Example: "3".
|
| + * The number assigned to the episode within a season.
|
| + * Only available on TV Avails.
|
| + * Example: "3".
|
| */
|
| core.String episodeNumber;
|
| /**
|
| * OPTIONAL.TV Only. Title used by involved parties to refer to this episode.
|
| - * Only available on TV Avails. Example: "Coding at Google".
|
| + * Only available on TV Avails.
|
| + * Example: "Coding at Google".
|
| */
|
| core.String episodeTitleInternalAlias;
|
| /**
|
| * Indicates the format profile covered by the transaction.
|
| * Possible string values are:
|
| - * - "FORMAT_PROFILE_UNSPECIFIED" : A FORMAT_PROFILE_UNSPECIFIED.
|
| - * - "SD" : A SD.
|
| - * - "HD" : A HD.
|
| - * - "UHD" : A UHD.
|
| + * - "FORMAT_PROFILE_UNSPECIFIED" : Value could not be determined, please
|
| + * contact technical support if
|
| + * it should.
|
| + * - "SD" : Standard-definition format.
|
| + * - "HD" : High-definition format.
|
| + * - "UHD" : 4K UHD.
|
| */
|
| core.String formatProfile;
|
| /**
|
| * Type of transaction.
|
| * Possible string values are:
|
| - * - "LICENSE_TYPE_UNSPECIFIED" : A LICENSE_TYPE_UNSPECIFIED.
|
| - * - "EST" : A EST.
|
| - * - "VOD" : A VOD.
|
| - * - "SVOD" : A SVOD.
|
| - * - "POEST" : A POEST.
|
| + * - "LICENSE_TYPE_UNSPECIFIED" : Value could not be determined, please
|
| + * contact technical support if
|
| + * it should.
|
| + * - "EST" : Electronic Sell Through - purchase policy for unlimited viewing.
|
| + * - "VOD" : Video On Demand - rental policy for temporary viewing.
|
| + * - "SVOD" : Subscription Video On Demand - used for subscription platforms.
|
| + * Not supported on Google Play.
|
| + * - "POEST" : Pre-order Electronic Sell Through - pre-order purchase only
|
| + * window.
|
| */
|
| core.String licenseType;
|
| /**
|
| - * Name of the post-production houses that manage the Avail. Not part of EMA
|
| - * Specs.
|
| + * Name of the post-production houses that manage the Avail.
|
| + * Not part of EMA Specs.
|
| */
|
| core.List<core.String> pphNames;
|
| /**
|
| - * Type of pricing that should be applied to this Avail based on how the
|
| - * partner classify them. Example: "Tier", "WSP", "SRP", or "Category".
|
| + * Type of pricing that should be applied to this Avail
|
| + * based on how the partner classify them.
|
| + * Example: "Tier", "WSP", "SRP", or "Category".
|
| */
|
| core.String priceType;
|
| - /** Value to be applied to the pricing type. Example: "4" or "2.99" */
|
| + /**
|
| + * Value to be applied to the pricing type.
|
| + * Example: "4" or "2.99"
|
| + */
|
| core.String priceValue;
|
| /**
|
| - * Edit Identifier. This should be the Edit Level EIDR. Example:
|
| - * "10.2340/1489-49A2-3956-4B2D-FE16-6"
|
| + * Edit Identifier. This should be the Edit Level EIDR.
|
| + * Example: "10.2340/1489-49A2-3956-4B2D-FE16-6"
|
| */
|
| core.String productId;
|
| /**
|
| - * Value representing the rating reason. Rating reasons should be formatted as
|
| - * per [EMA ratings spec](http://www.movielabs.com/md/ratings/) and
|
| - * comma-separated for inclusion of multiple reasons. Example: "L, S, V"
|
| + * Value representing the rating reason.
|
| + * Rating reasons should be formatted as per
|
| + * [EMA ratings spec](http://www.movielabs.com/md/ratings/)
|
| + * and comma-separated for inclusion of multiple reasons.
|
| + * Example: "L, S, V"
|
| */
|
| core.String ratingReason;
|
| /**
|
| - * Rating system applied to the version of title within territory of Avail.
|
| - * Rating systems should be formatted as per [EMA ratings
|
| - * spec](http://www.movielabs.com/md/ratings/) Example: "MPAA"
|
| + * Rating system applied to the version of title within territory
|
| + * of Avail.
|
| + * Rating systems should be formatted as per
|
| + * [EMA ratings spec](http://www.movielabs.com/md/ratings/)
|
| + * Example: "MPAA"
|
| */
|
| core.String ratingSystem;
|
| /**
|
| - * Value representing the rating. Ratings should be formatted as per
|
| - * http://www.movielabs.com/md/ratings/ Example: "PG"
|
| + * Value representing the rating.
|
| + * Ratings should be formatted as per http://www.movielabs.com/md/ratings/
|
| + * Example: "PG"
|
| */
|
| core.String ratingValue;
|
| /**
|
| - * Release date of the Title in earliest released territory. Typically it is
|
| - * just the year, but it is free-form as per EMA spec. Examples: "1979", "Oct
|
| - * 2014"
|
| + * Release date of the Title in earliest released territory.
|
| + * Typically it is just the year, but it is free-form as per EMA spec.
|
| + * Examples: "1979", "Oct 2014"
|
| */
|
| core.String releaseDate;
|
| /**
|
| - * Other identifier referring to the season, as defined by partner. Only
|
| - * available on TV avails. Example: "rs_googlers_s1".
|
| + * Other identifier referring to the season, as defined by partner.
|
| + * Only available on TV avails.
|
| + * Example: "rs_googlers_s1".
|
| */
|
| core.String seasonAltId;
|
| /**
|
| - * The number assigned to the season within a series. Only available on TV
|
| - * Avails. Example: "1".
|
| + * The number assigned to the season within a series.
|
| + * Only available on TV Avails.
|
| + * Example: "1".
|
| */
|
| core.String seasonNumber;
|
| /**
|
| - * Title used by involved parties to refer to this season. Only available on
|
| - * TV Avails. Example: "Googlers, The".
|
| + * Title used by involved parties to refer to this season.
|
| + * Only available on TV Avails.
|
| + * Example: "Googlers, The".
|
| */
|
| core.String seasonTitleInternalAlias;
|
| /**
|
| - * Other identifier referring to the series, as defined by partner. Only
|
| - * available on TV avails. Example: "rs_googlers".
|
| + * Other identifier referring to the series, as defined by partner.
|
| + * Only available on TV avails.
|
| + * Example: "rs_googlers".
|
| */
|
| core.String seriesAltId;
|
| /**
|
| - * Title used by involved parties to refer to this series. Only available on
|
| - * TV Avails. Example: "Googlers, The".
|
| + * Title used by involved parties to refer to this series.
|
| + * Only available on TV Avails.
|
| + * Example: "Googlers, The".
|
| */
|
| core.String seriesTitleInternalAlias;
|
| /**
|
| - * Start of term in YYYY-MM-DD format in the timezone of the country of the
|
| - * Avail. Example: "2013-05-14".
|
| + * Start of term in YYYY-MM-DD format in the timezone of the
|
| + * country of the Avail.
|
| + * Example: "2013-05-14".
|
| */
|
| core.String start;
|
| /**
|
| - * Spoken language of the intended audience. Language shall be encoded in
|
| - * accordance with RFC 5646. Example: "fr".
|
| + * Spoken language of the intended audience.
|
| + * Language shall be encoded in accordance with RFC 5646.
|
| + * Example: "fr".
|
| */
|
| core.String storeLanguage;
|
| /**
|
| - * First date an Edit could be publically announced as becoming available at a
|
| - * specific future date in territory of Avail. *Not* the Avail start date or
|
| - * pre-order start date. Format is YYYY-MM-DD. Only available for pre-orders.
|
| + * First date an Edit could be publically announced as becoming
|
| + * available at a specific future date in territory of Avail.
|
| + * *Not* the Avail start date or pre-order start date.
|
| + * Format is YYYY-MM-DD.
|
| + * Only available for pre-orders.
|
| * Example: "2012-12-10"
|
| */
|
| core.String suppressionLiftDate;
|
| /**
|
| - * ISO 3166-1 alpha-2 country code for the country or territory of this Avail.
|
| - * For Avails, we use Territory in lieu of Country to comply with EMA
|
| - * specifications. But please note that Territory and Country identify the
|
| - * same thing. Example: "US".
|
| + * ISO 3166-1 alpha-2 country code for the country or territory
|
| + * of this Avail.
|
| + * For Avails, we use Territory in lieu of Country to comply with
|
| + * EMA specifications.
|
| + * But please note that Territory and Country identify the same thing.
|
| + * Example: "US".
|
| */
|
| core.String territory;
|
| /**
|
| - * Title used by involved parties to refer to this content. Example:
|
| - * "Googlers, The". Only available on Movie Avails.
|
| + * Title used by involved parties to refer to this content.
|
| + * Example: "Googlers, The".
|
| + * Only available on Movie Avails.
|
| */
|
| core.String titleInternalAlias;
|
| /**
|
| * Google-generated ID identifying the video linked to this Avail, once
|
| - * delivered. Not part of EMA Specs. Example: 'gtry456_xc'
|
| + * delivered.
|
| + * Not part of EMA Specs.
|
| + * Example: 'gtry456_xc'
|
| */
|
| core.String videoId;
|
| /**
|
| * Work type as enumerated in EMA.
|
| * Possible string values are:
|
| - * - "TITLE_TYPE_UNSPECIFIED" : A TITLE_TYPE_UNSPECIFIED.
|
| - * - "MOVIE" : A MOVIE.
|
| - * - "SEASON" : A SEASON.
|
| - * - "EPISODE" : A EPISODE.
|
| - * - "BUNDLE" : A BUNDLE.
|
| + * - "TITLE_TYPE_UNSPECIFIED" : Value could not be determined, please contact
|
| + * technical support if
|
| + * it should.
|
| + * - "MOVIE" : A movie picture.
|
| + * - "SEASON" : A season of a TV show.
|
| + * - "EPISODE" : An episode of a TV show.
|
| + * - "BUNDLE" : A collection of movies, i.e. "Googlers 1 and Googlers, the
|
| + * return"
|
| */
|
| core.String workType;
|
|
|
| @@ -1013,61 +1064,76 @@ class ListStoreInfosResponse {
|
| }
|
|
|
| /**
|
| - * An Order tracks the fulfillment of an Edit when delivered using the legacy,
|
| - * non-component-based delivery. Each Order is uniquely identified by an
|
| - * `order_id`, which is generated by Google. Externally, Orders can also be
|
| - * identified by partners using its `custom_id` (when provided).
|
| + * An Order tracks the fulfillment of an Edit when delivered using the
|
| + * legacy, non-component-based delivery.
|
| + *
|
| + * Each Order is uniquely identified by an `order_id`, which is generated
|
| + * by Google.
|
| + *
|
| + * Externally, Orders can also be identified by partners using its `custom_id`
|
| + * (when provided).
|
| */
|
| class Order {
|
| /** Timestamp when the Order was approved. */
|
| core.String approvedTime;
|
| /**
|
| - * YouTube Channel ID that should be used to fulfill the Order. Example:
|
| - * "UCRG64darCZhb".
|
| + * YouTube Channel ID that should be used to fulfill the Order.
|
| + * Example: "UCRG64darCZhb".
|
| */
|
| core.String channelId;
|
| /**
|
| - * YouTube Channel Name that should be used to fulfill the Order. Example:
|
| - * "Google_channel".
|
| + * YouTube Channel Name that should be used to fulfill the Order.
|
| + * Example: "Google_channel".
|
| */
|
| core.String channelName;
|
| /**
|
| - * Countries where the Order is available, using the "ISO 3166-1 alpha-2"
|
| - * format (example: "US").
|
| + * Countries where the Order is available,
|
| + * using the "ISO 3166-1 alpha-2" format (example: "US").
|
| */
|
| core.List<core.String> countries;
|
| /**
|
| - * ID that can be used to externally identify an Order. This ID is provided by
|
| - * partners when submitting the Avails. Example: 'GOOGLER_2006'
|
| + * ID that can be used to externally identify an Order.
|
| + * This ID is provided by partners when submitting the Avails.
|
| + * Example: 'GOOGLER_2006'
|
| */
|
| core.String customId;
|
| /**
|
| - * Timestamp of the earliest start date of the Avails linked to this Order.
|
| + * Timestamp of the earliest start date of the Avails
|
| + * linked to this Order.
|
| */
|
| core.String earliestAvailStartTime;
|
| /**
|
| - * Default Episode name, usually in the language of the country of origin.
|
| - * Only available for TV Edits Example: "Googlers, The - Pilot".
|
| + * Default Episode name,
|
| + * usually in the language of the country of origin.
|
| + * Only available for TV Edits
|
| + * Example: "Googlers, The - Pilot".
|
| */
|
| core.String episodeName;
|
| - /** Legacy Order priority, as defined by Google. Example: 'P0' */
|
| + /**
|
| + * Legacy Order priority, as defined by Google.
|
| + * Example: 'P0'
|
| + */
|
| core.String legacyPriority;
|
| /**
|
| - * Default Edit name, usually in the language of the country of origin.
|
| + * Default Edit name,
|
| + * usually in the language of the country of origin.
|
| * Example: "Googlers, The".
|
| */
|
| core.String name;
|
| /**
|
| * A simpler representation of the priority.
|
| * Possible string values are:
|
| - * - "NORMALIZED_PRIORITY_UNSPECIFIED" : A NORMALIZED_PRIORITY_UNSPECIFIED.
|
| - * - "LOW_PRIORITY" : A LOW_PRIORITY.
|
| - * - "HIGH_PRIORITY" : A HIGH_PRIORITY.
|
| + * - "NORMALIZED_PRIORITY_UNSPECIFIED" : Value could not be determined, please
|
| + * contact technical support if
|
| + * it should.
|
| + * - "LOW_PRIORITY" : A low-priority asset, typically from a library movie.
|
| + * - "HIGH_PRIORITY" : A high-priority asset, typically from a new release or
|
| + * box office hit.
|
| */
|
| core.String normalizedPriority;
|
| /**
|
| - * ID internally generated by Google to uniquely identify an Order. Example:
|
| - * 'abcde12_x'
|
| + * ID internally generated by Google to uniquely identify an Order.
|
| + * Example: 'abcde12_x'
|
| */
|
| core.String orderId;
|
| /** Timestamp when the Order was created. */
|
| @@ -1075,50 +1141,66 @@ class Order {
|
| /** Name of the post-production house that manages the Edit ordered. */
|
| core.String pphName;
|
| /**
|
| - * Order priority, as defined by Google. The higher the value, the higher the
|
| - * priority. Example: 90
|
| + * Order priority, as defined by Google.
|
| + * The higher the value, the higher the priority.
|
| + * Example: 90
|
| */
|
| core.double priority;
|
| /** Timestamp when the Order was fulfilled. */
|
| core.String receivedTime;
|
| /**
|
| - * Field explaining why an Order has been rejected. Example: "Trailer audio is
|
| - * 2ch mono, please re-deliver in stereo".
|
| + * Field explaining why an Order has been rejected.
|
| + * Example: "Trailer audio is 2ch mono, please re-deliver in stereo".
|
| */
|
| core.String rejectionNote;
|
| /**
|
| - * Default Season name, usually in the language of the country of origin. Only
|
| - * available for TV Edits Example: "Googlers, The - A Brave New World".
|
| + * Default Season name,
|
| + * usually in the language of the country of origin.
|
| + * Only available for TV Edits
|
| + * Example: "Googlers, The - A Brave New World".
|
| */
|
| core.String seasonName;
|
| /**
|
| - * Default Show name, usually in the language of the country of origin. Only
|
| - * available for TV Edits Example: "Googlers, The".
|
| + * Default Show name,
|
| + * usually in the language of the country of origin.
|
| + * Only available for TV Edits
|
| + * Example: "Googlers, The".
|
| */
|
| core.String showName;
|
| /**
|
| * High-level status of the order.
|
| * Possible string values are:
|
| - * - "STATUS_UNSPECIFIED" : A STATUS_UNSPECIFIED.
|
| - * - "STATUS_APPROVED" : A STATUS_APPROVED.
|
| - * - "STATUS_FAILED" : A STATUS_FAILED.
|
| - * - "STATUS_PROCESSING" : A STATUS_PROCESSING.
|
| - * - "STATUS_UNFULFILLED" : A STATUS_UNFULFILLED.
|
| - * - "STATUS_NOT_AVAILABLE" : A STATUS_NOT_AVAILABLE.
|
| + * - "STATUS_UNSPECIFIED" : Value could not be determined, please contact
|
| + * technical support if
|
| + * it should.
|
| + * - "STATUS_APPROVED" : Approved by Google.
|
| + * - "STATUS_FAILED" : Waiting for partner to re-deliver the asset after a
|
| + * rejection by Google.
|
| + * - "STATUS_PROCESSING" : Waiting for Google to process the asset.
|
| + * - "STATUS_UNFULFILLED" : Waiting for partner to deliver the asset.
|
| + * - "STATUS_NOT_AVAILABLE" : Used when Status is not available (i.e: Orders
|
| + * for TV Seasons).
|
| */
|
| core.String status;
|
| /**
|
| * Detailed status of the order
|
| * Possible string values are:
|
| - * - "ORDER_STATUS_UNSPECIFIED" : A ORDER_STATUS_UNSPECIFIED.
|
| - * - "ORDER_STATUS_QC_APPROVED" : A ORDER_STATUS_QC_APPROVED.
|
| - * - "ORDER_STATUS_QC_REJECTION" : A ORDER_STATUS_QC_REJECTION.
|
| - * - "ORDER_STATUS_INTERNAL_FIX" : A ORDER_STATUS_INTERNAL_FIX.
|
| - * - "ORDER_STATUS_OPEN_ORDER" : A ORDER_STATUS_OPEN_ORDER.
|
| - * - "ORDER_STATUS_NOT_AVAILABLE" : A ORDER_STATUS_NOT_AVAILABLE.
|
| - * - "ORDER_STATUS_AWAITING_REDELIVERY" : A ORDER_STATUS_AWAITING_REDELIVERY.
|
| - * - "ORDER_STATUS_READY_FOR_QC" : A ORDER_STATUS_READY_FOR_QC.
|
| - * - "ORDER_STATUS_FILE_PROCESSING" : A ORDER_STATUS_FILE_PROCESSING.
|
| + * - "ORDER_STATUS_UNSPECIFIED" : Value could not be determined, please
|
| + * contact technical support if
|
| + * it should.
|
| + * - "ORDER_STATUS_QC_APPROVED" : Approved by Google's Quality Control team.
|
| + * - "ORDER_STATUS_QC_REJECTION" : Rejected by Google's Quality Control team,
|
| + * pending partner redelivery.
|
| + * - "ORDER_STATUS_INTERNAL_FIX" : Internal error while processing the Order.
|
| + * - "ORDER_STATUS_OPEN_ORDER" : Waiting for initial delivery from partner.
|
| + * - "ORDER_STATUS_NOT_AVAILABLE" : Used on Orders that do not have Status,
|
| + * like TV Seasons.
|
| + * - "ORDER_STATUS_AWAITING_REDELIVERY" : Waiting for re-delivery from
|
| + * partner.
|
| + * - "ORDER_STATUS_READY_FOR_QC" : Asset was delivered by partner, but is
|
| + * being reviewed by Google's
|
| + * Quality Control team.
|
| + * - "ORDER_STATUS_FILE_PROCESSING" : Waiting for Google to process the asset.
|
| */
|
| core.String statusDetail;
|
| /** Name of the studio that owns the Edit ordered. */
|
| @@ -1126,16 +1208,20 @@ class Order {
|
| /**
|
| * Type of the Edit linked to the Order.
|
| * Possible string values are:
|
| - * - "TITLE_TYPE_UNSPECIFIED" : A TITLE_TYPE_UNSPECIFIED.
|
| - * - "MOVIE" : A MOVIE.
|
| - * - "SEASON" : A SEASON.
|
| - * - "EPISODE" : A EPISODE.
|
| - * - "BUNDLE" : A BUNDLE.
|
| + * - "TITLE_TYPE_UNSPECIFIED" : Value could not be determined, please contact
|
| + * technical support if
|
| + * it should.
|
| + * - "MOVIE" : A movie picture.
|
| + * - "SEASON" : A season of a TV show.
|
| + * - "EPISODE" : An episode of a TV show.
|
| + * - "BUNDLE" : A collection of movies, i.e. "Googlers 1 and Googlers, the
|
| + * return"
|
| */
|
| core.String type;
|
| /**
|
| * Google-generated ID identifying the video linked to this Order, once
|
| - * delivered. Example: 'gtry456_xc'.
|
| + * delivered.
|
| + * Example: 'gtry456_xc'.
|
| */
|
| core.String videoId;
|
|
|
| @@ -1289,25 +1375,33 @@ class Order {
|
| }
|
|
|
| /**
|
| - * Information about a playable sequence (video) associated with an Edit and
|
| - * available at the Google Play Store. Internally, each StoreInfo is uniquely
|
| - * identified by a `video_id` and `country`. Externally, Title-level EIDR or
|
| - * Edit-level EIDR, if provided, can also be used to identify a specific title
|
| - * or edit in a country.
|
| + * Information about a playable sequence (video) associated with an Edit
|
| + * and available at the Google Play Store.
|
| + *
|
| + * Internally, each StoreInfo is uniquely identified by a `video_id`
|
| + * and `country`.
|
| + *
|
| + * Externally, Title-level EIDR or Edit-level EIDR, if provided,
|
| + * can also be used to identify a specific title or edit in a country.
|
| */
|
| class StoreInfo {
|
| /** Audio tracks available for this Edit. */
|
| core.List<core.String> audioTracks;
|
| /**
|
| - * Country where Edit is available in ISO 3166-1 alpha-2 country code.
|
| + * Country where Edit is available in ISO 3166-1 alpha-2 country
|
| + * code.
|
| * Example: "US".
|
| */
|
| core.String country;
|
| - /** Edit-level EIDR ID. Example: "10.5240/1489-49A2-3956-4B2D-FE16-6". */
|
| + /**
|
| + * Edit-level EIDR ID.
|
| + * Example: "10.5240/1489-49A2-3956-4B2D-FE16-6".
|
| + */
|
| core.String editLevelEidr;
|
| /**
|
| - * The number assigned to the episode within a season. Only available on TV
|
| - * Edits. Example: "1".
|
| + * The number assigned to the episode within a season.
|
| + * Only available on TV Edits.
|
| + * Example: "1".
|
| */
|
| core.String episodeNumber;
|
| /** Whether the Edit has a 5.1 channel audio track. */
|
| @@ -1325,68 +1419,84 @@ class StoreInfo {
|
| /** Timestamp when the Edit went live on the Store. */
|
| core.String liveTime;
|
| /**
|
| - * Knowledge Graph ID associated to this Edit, if available. This ID links the
|
| - * Edit to its knowledge entity, externally accessible at http://freebase.com.
|
| + * Knowledge Graph ID associated to this Edit, if available.
|
| + * This ID links the Edit to its knowledge entity, externally accessible
|
| + * at http://freebase.com.
|
| * In the absense of Title EIDR or Edit EIDR, this ID helps link together
|
| - * multiple Edits across countries. Example: '/m/0ffx29'
|
| + * multiple Edits across countries.
|
| + * Example: '/m/0ffx29'
|
| */
|
| core.String mid;
|
| /**
|
| - * Default Edit name, usually in the language of the country of origin.
|
| + * Default Edit name, usually in the language of the country of
|
| + * origin.
|
| * Example: "Googlers, The".
|
| */
|
| core.String name;
|
| /** Name of the post-production houses that manage the Edit. */
|
| core.List<core.String> pphNames;
|
| /**
|
| - * Google-generated ID identifying the season linked to the Edit. Only
|
| - * available for TV Edits. Example: 'ster23ex'
|
| + * Google-generated ID identifying the season linked to the Edit.
|
| + * Only available for TV Edits.
|
| + * Example: 'ster23ex'
|
| */
|
| core.String seasonId;
|
| /**
|
| - * Default Season name, usually in the language of the country of origin. Only
|
| - * available for TV Edits Example: "Googlers, The - A Brave New World".
|
| + * Default Season name, usually in the language of the country of
|
| + * origin.
|
| + * Only available for TV Edits
|
| + * Example: "Googlers, The - A Brave New World".
|
| */
|
| core.String seasonName;
|
| /**
|
| - * The number assigned to the season within a show. Only available on TV
|
| - * Edits. Example: "1".
|
| + * The number assigned to the season within a show.
|
| + * Only available on TV Edits.
|
| + * Example: "1".
|
| */
|
| core.String seasonNumber;
|
| /**
|
| - * Google-generated ID identifying the show linked to the Edit. Only available
|
| - * for TV Edits. Example: 'et2hsue_x'
|
| + * Google-generated ID identifying the show linked to the Edit.
|
| + * Only available for TV Edits.
|
| + * Example: 'et2hsue_x'
|
| */
|
| core.String showId;
|
| /**
|
| - * Default Show name, usually in the language of the country of origin. Only
|
| - * available for TV Edits Example: "Googlers, The".
|
| + * Default Show name, usually in the language of the country of
|
| + * origin.
|
| + * Only available for TV Edits
|
| + * Example: "Googlers, The".
|
| */
|
| core.String showName;
|
| /** Name of the studio that owns the Edit ordered. */
|
| core.String studioName;
|
| /** Subtitles available for this Edit. */
|
| core.List<core.String> subtitles;
|
| - /** Title-level EIDR ID. Example: "10.5240/1489-49A2-3956-4B2D-FE16-5". */
|
| + /**
|
| + * Title-level EIDR ID.
|
| + * Example: "10.5240/1489-49A2-3956-4B2D-FE16-5".
|
| + */
|
| core.String titleLevelEidr;
|
| /**
|
| - * Google-generated ID identifying the trailer linked to the Edit. Example:
|
| - * 'bhd_4e_cx'
|
| + * Google-generated ID identifying the trailer linked to the Edit.
|
| + * Example: 'bhd_4e_cx'
|
| */
|
| core.String trailerId;
|
| /**
|
| * Edit type, like Movie, Episode or Season.
|
| * Possible string values are:
|
| - * - "TITLE_TYPE_UNSPECIFIED" : A TITLE_TYPE_UNSPECIFIED.
|
| - * - "MOVIE" : A MOVIE.
|
| - * - "SEASON" : A SEASON.
|
| - * - "EPISODE" : A EPISODE.
|
| - * - "BUNDLE" : A BUNDLE.
|
| + * - "TITLE_TYPE_UNSPECIFIED" : Value could not be determined, please contact
|
| + * technical support if
|
| + * it should.
|
| + * - "MOVIE" : A movie picture.
|
| + * - "SEASON" : A season of a TV show.
|
| + * - "EPISODE" : An episode of a TV show.
|
| + * - "BUNDLE" : A collection of movies, i.e. "Googlers 1 and Googlers, the
|
| + * return"
|
| */
|
| core.String type;
|
| /**
|
| - * Google-generated ID identifying the video linked to the Edit. Example:
|
| - * 'gtry456_xc'
|
| + * Google-generated ID identifying the video linked to the Edit.
|
| + * Example: 'gtry456_xc'
|
| */
|
| core.String videoId;
|
|
|
|
|