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

Unified Diff: generated/googleapis/lib/youtube/v3.dart

Issue 2571553005: Api-roll 43: 2016-12-13 (Closed)
Patch Set: Created 4 years 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/lib/vision/v1.dart ('k') | generated/googleapis/lib/youtubeanalytics/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/youtube/v3.dart
diff --git a/generated/googleapis/lib/youtube/v3.dart b/generated/googleapis/lib/youtube/v3.dart
index c277e52f6dfddfc2e78a71e3689c925ad2983431..fddc10dd88f6a2c52f0953c3a47d515aace4dcdb 100644
--- a/generated/googleapis/lib/youtube/v3.dart
+++ b/generated/googleapis/lib/youtube/v3.dart
@@ -5585,8 +5585,8 @@ class VideosResourceApi {
* items that should be returned in the result set.
*
* Note: This parameter is supported for use in conjunction with the myRating
- * parameter, but it is not supported for use in conjunction with the id
- * parameter.
+ * and chart parameters, but it is not supported for use in conjunction with
+ * the id parameter.
* Value must be between "1" and "50".
*
* [maxWidth] - The maxWidth parameter specifies a maximum width of the
@@ -5618,8 +5618,8 @@ class VideosResourceApi {
* and prevPageToken properties identify other pages that could be retrieved.
*
* Note: This parameter is supported for use in conjunction with the myRating
- * parameter, but it is not supported for use in conjunction with the id
- * parameter.
+ * and chart parameters, but it is not supported for use in conjunction with
+ * the id parameter.
*
* [regionCode] - The regionCode parameter instructs the API to select a video
* chart available in the specified region. This parameter can only be used in
@@ -7253,6 +7253,7 @@ class CdnSettings {
* Possible string values are:
* - "1080p"
* - "1440p"
+ * - "2160p"
* - "240p"
* - "360p"
* - "480p"
@@ -9219,7 +9220,7 @@ class CommentThreadSnippet {
/**
* Ratings schemes. The country-specific ratings are mostly for movies and
- * shows. NEXT_ID: 68
+ * shows. NEXT_ID: 69
*/
class ContentRating {
/**
@@ -9731,6 +9732,19 @@ class ContentRating {
*/
core.String mccypRating;
/**
+ * The video's rating system for Vietnam - MCST
+ * Possible string values are:
+ * - "mcst0"
+ * - "mcst16plus"
+ * - "mcstC13"
+ * - "mcstC16"
+ * - "mcstC18"
+ * - "mcstGPg"
+ * - "mcstP"
+ * - "mcstUnrated"
+ */
+ core.String mcstRating;
+ /**
* The video's rating from Singapore's Media Development Authority (MDA) and,
* specifically, it's Board of Film Censors (BFC).
* Possible string values are:
@@ -10156,6 +10170,9 @@ class ContentRating {
if (_json.containsKey("mccypRating")) {
mccypRating = _json["mccypRating"];
}
+ if (_json.containsKey("mcstRating")) {
+ mcstRating = _json["mcstRating"];
+ }
if (_json.containsKey("mdaRating")) {
mdaRating = _json["mdaRating"];
}
@@ -10361,6 +10378,9 @@ class ContentRating {
if (mccypRating != null) {
_json["mccypRating"] = mccypRating;
}
+ if (mcstRating != null) {
+ _json["mcstRating"] = mcstRating;
+ }
if (mdaRating != null) {
_json["mdaRating"] = mdaRating;
}
@@ -14200,6 +14220,11 @@ class PlaylistItemContentDetails {
* request.
*/
core.String videoId;
+ /**
+ * The date and time that the video was published to YouTube. The value is
+ * specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.
+ */
+ core.DateTime videoPublishedAt;
PlaylistItemContentDetails();
@@ -14216,6 +14241,9 @@ class PlaylistItemContentDetails {
if (_json.containsKey("videoId")) {
videoId = _json["videoId"];
}
+ if (_json.containsKey("videoPublishedAt")) {
+ videoPublishedAt = core.DateTime.parse(_json["videoPublishedAt"]);
+ }
}
core.Map toJson() {
@@ -14232,6 +14260,9 @@ class PlaylistItemContentDetails {
if (videoId != null) {
_json["videoId"] = videoId;
}
+ if (videoPublishedAt != null) {
+ _json["videoPublishedAt"] = (videoPublishedAt).toIso8601String();
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/vision/v1.dart ('k') | generated/googleapis/lib/youtubeanalytics/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698