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

Unified Diff: generated/googleapis/lib/plusdomains/v1.dart

Issue 1296863002: Api-roll 22: 2015-08-17 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 5 years, 4 months 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/plus/v1.dart ('k') | generated/googleapis/lib/storagetransfer/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/plusdomains/v1.dart
diff --git a/generated/googleapis/lib/plusdomains/v1.dart b/generated/googleapis/lib/plusdomains/v1.dart
index 902658c83a92aa6998ffe6d0e8870819d660f27e..b6e9cc1304c382ff477608b261ff23000c1f8f0b 100644
--- a/generated/googleapis/lib/plusdomains/v1.dart
+++ b/generated/googleapis/lib/plusdomains/v1.dart
@@ -1250,6 +1250,28 @@ class ActivityActorName {
}
}
+/** Verification status of actor. */
+class ActivityActorVerification {
+ /** Verification for one-time or manual processes. */
+ core.String adHocVerified;
+
+ ActivityActorVerification();
+
+ ActivityActorVerification.fromJson(core.Map _json) {
+ if (_json.containsKey("adHocVerified")) {
+ adHocVerified = _json["adHocVerified"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (adHocVerified != null) {
+ _json["adHocVerified"] = adHocVerified;
+ }
+ return _json;
+ }
+}
+
/** The person who performed this activity. */
class ActivityActor {
/** The name of the actor, suitable for display. */
@@ -1262,6 +1284,8 @@ class ActivityActor {
ActivityActorName name;
/** The link to the actor's Google profile. */
core.String url;
+ /** Verification status of actor. */
+ ActivityActorVerification verification;
ActivityActor();
@@ -1281,6 +1305,9 @@ class ActivityActor {
if (_json.containsKey("url")) {
url = _json["url"];
}
+ if (_json.containsKey("verification")) {
+ verification = new ActivityActorVerification.fromJson(_json["verification"]);
+ }
}
core.Map toJson() {
@@ -1300,6 +1327,9 @@ class ActivityActor {
if (url != null) {
_json["url"] = url;
}
+ if (verification != null) {
+ _json["verification"] = (verification).toJson();
+ }
return _json;
}
}
@@ -1326,6 +1356,28 @@ class ActivityObjectActorImage {
}
}
+/** Verification status of actor. */
+class ActivityObjectActorVerification {
+ /** Verification for one-time or manual processes. */
+ core.String adHocVerified;
+
+ ActivityObjectActorVerification();
+
+ ActivityObjectActorVerification.fromJson(core.Map _json) {
+ if (_json.containsKey("adHocVerified")) {
+ adHocVerified = _json["adHocVerified"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (adHocVerified != null) {
+ _json["adHocVerified"] = adHocVerified;
+ }
+ return _json;
+ }
+}
+
/**
* If this activity's object is itself another activity, such as when a person
* reshares an activity, this property specifies the original activity's actor.
@@ -1339,6 +1391,8 @@ class ActivityObjectActor {
ActivityObjectActorImage image;
/** A link to the original actor's Google profile. */
core.String url;
+ /** Verification status of actor. */
+ ActivityObjectActorVerification verification;
ActivityObjectActor();
@@ -1355,6 +1409,9 @@ class ActivityObjectActor {
if (_json.containsKey("url")) {
url = _json["url"];
}
+ if (_json.containsKey("verification")) {
+ verification = new ActivityObjectActorVerification.fromJson(_json["verification"]);
+ }
}
core.Map toJson() {
@@ -1371,6 +1428,9 @@ class ActivityObjectActor {
if (url != null) {
_json["url"] = url;
}
+ if (verification != null) {
+ _json["verification"] = (verification).toJson();
+ }
return _json;
}
}
@@ -2621,6 +2681,28 @@ class CommentActorImage {
}
}
+/** Verification status of actor. */
+class CommentActorVerification {
+ /** Verification for one-time or manual processes. */
+ core.String adHocVerified;
+
+ CommentActorVerification();
+
+ CommentActorVerification.fromJson(core.Map _json) {
+ if (_json.containsKey("adHocVerified")) {
+ adHocVerified = _json["adHocVerified"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (adHocVerified != null) {
+ _json["adHocVerified"] = adHocVerified;
+ }
+ return _json;
+ }
+}
+
/** The person who posted this comment. */
class CommentActor {
/** The name of this actor, suitable for display. */
@@ -2631,6 +2713,8 @@ class CommentActor {
CommentActorImage image;
/** A link to the Person resource for this actor. */
core.String url;
+ /** Verification status of actor. */
+ CommentActorVerification verification;
CommentActor();
@@ -2647,6 +2731,9 @@ class CommentActor {
if (_json.containsKey("url")) {
url = _json["url"];
}
+ if (_json.containsKey("verification")) {
+ verification = new CommentActorVerification.fromJson(_json["verification"]);
+ }
}
core.Map toJson() {
@@ -2663,6 +2750,9 @@ class CommentActor {
if (url != null) {
_json["url"] = url;
}
+ if (verification != null) {
+ _json["verification"] = (verification).toJson();
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/plus/v1.dart ('k') | generated/googleapis/lib/storagetransfer/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698