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

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

Issue 770773002: Api roll 7: 2014-12-01 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 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/tagmanager/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 ad5adeaad8476891f60e30c468776a9722138c38..d1278a7ff2d7a226e659e1dcb5c9c5b1e57ddb3d 100644
--- a/generated/googleapis/lib/youtube/v3.dart
+++ b/generated/googleapis/lib/youtube/v3.dart
@@ -5225,6 +5225,7 @@ class CdnSettings {
/**
* The method or protocol used to transmit the video stream.
* Possible string values are:
+ * - "dash"
* - "rtmp"
*/
core.String ingestionType;
@@ -12768,6 +12769,9 @@ class VideoGetRatingResponse {
/** Etag of this resource. */
core.String etag;
+ /** Serialized EventId of the request which produced this response. */
+ core.String eventId;
+
/** A list of ratings that match the request criteria. */
core.List<VideoRating> items;
@@ -12777,6 +12781,9 @@ class VideoGetRatingResponse {
*/
core.String kind;
+ /** The visitorId identifies the visitor. */
+ core.String visitorId;
+
VideoGetRatingResponse();
@@ -12784,12 +12791,18 @@ class VideoGetRatingResponse {
if (_json.containsKey("etag")) {
etag = _json["etag"];
}
+ if (_json.containsKey("eventId")) {
+ eventId = _json["eventId"];
+ }
if (_json.containsKey("items")) {
items = _json["items"].map((value) => new VideoRating.fromJson(value)).toList();
}
if (_json.containsKey("kind")) {
kind = _json["kind"];
}
+ if (_json.containsKey("visitorId")) {
+ visitorId = _json["visitorId"];
+ }
}
core.Map toJson() {
@@ -12797,12 +12810,18 @@ class VideoGetRatingResponse {
if (etag != null) {
_json["etag"] = etag;
}
+ if (eventId != null) {
+ _json["eventId"] = eventId;
+ }
if (items != null) {
_json["items"] = items.map((value) => (value).toJson()).toList();
}
if (kind != null) {
_json["kind"] = kind;
}
+ if (visitorId != null) {
+ _json["visitorId"] = visitorId;
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/tagmanager/v1.dart ('k') | generated/googleapis/lib/youtubeanalytics/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698