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

Unified Diff: generated/googleapis/lib/content/v2.dart

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 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/container/v1.dart ('k') | generated/googleapis/lib/dataproc/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/content/v2.dart
diff --git a/generated/googleapis/lib/content/v2.dart b/generated/googleapis/lib/content/v2.dart
index 37fae2f15e0e16d4621dabc12fd9884f136324e4..45e58dd39075c5f82a7fd125ce96cd0e8322101d 100644
--- a/generated/googleapis/lib/content/v2.dart
+++ b/generated/googleapis/lib/content/v2.dart
@@ -4065,6 +4065,8 @@ class AccountStatus {
class AccountStatusDataQualityIssue {
/** Country for which this issue is reported. */
core.String country;
+ /** A more detailed description of the issue. */
+ core.String detail;
/** Actual value displayed on the landing page. */
core.String displayedValue;
/** Example items featuring the issue. */
@@ -4073,6 +4075,8 @@ class AccountStatusDataQualityIssue {
core.String id;
/** Last time the account was checked for this issue. */
core.String lastChecked;
+ /** The attribute name that is relevant for the issue. */
+ core.String location;
/** Number of items in the account found to have the said issue. */
core.int numItems;
/** Severity of the problem. */
@@ -4086,6 +4090,9 @@ class AccountStatusDataQualityIssue {
if (_json.containsKey("country")) {
country = _json["country"];
}
+ if (_json.containsKey("detail")) {
+ detail = _json["detail"];
+ }
if (_json.containsKey("displayedValue")) {
displayedValue = _json["displayedValue"];
}
@@ -4098,6 +4105,9 @@ class AccountStatusDataQualityIssue {
if (_json.containsKey("lastChecked")) {
lastChecked = _json["lastChecked"];
}
+ if (_json.containsKey("location")) {
+ location = _json["location"];
+ }
if (_json.containsKey("numItems")) {
numItems = _json["numItems"];
}
@@ -4114,6 +4124,9 @@ class AccountStatusDataQualityIssue {
if (country != null) {
_json["country"] = country;
}
+ if (detail != null) {
+ _json["detail"] = detail;
+ }
if (displayedValue != null) {
_json["displayedValue"] = displayedValue;
}
@@ -4126,6 +4139,9 @@ class AccountStatusDataQualityIssue {
if (lastChecked != null) {
_json["lastChecked"] = lastChecked;
}
+ if (location != null) {
+ _json["location"] = location;
+ }
if (numItems != null) {
_json["numItems"] = numItems;
}
« no previous file with comments | « generated/googleapis/lib/container/v1.dart ('k') | generated/googleapis/lib/dataproc/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698