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

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

Issue 3003493002: Api-Roll 53: 2017-08-21 (Closed)
Patch Set: Created 3 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/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 30f3ca119cc1d2b8e8dc3fb6184a278731e6a3d5..bf23b8c2a2e5b5f1791293fe124a5da43e3e5f79 100644
--- a/generated/googleapis/lib/content/v2.dart
+++ b/generated/googleapis/lib/content/v2.dart
@@ -3224,6 +3224,8 @@ class AccountIdentifier {
class AccountStatus {
/** The ID of the account for which the status is reported. */
core.String accountId;
+ /** A list of account level issues. */
+ core.List<AccountStatusAccountLevelIssue> accountLevelIssues;
/** A list of data quality issues. */
core.List<AccountStatusDataQualityIssue> dataQualityIssues;
/**
@@ -3240,6 +3242,9 @@ class AccountStatus {
if (_json.containsKey("accountId")) {
accountId = _json["accountId"];
}
+ if (_json.containsKey("accountLevelIssues")) {
+ accountLevelIssues = _json["accountLevelIssues"].map((value) => new AccountStatusAccountLevelIssue.fromJson(value)).toList();
+ }
if (_json.containsKey("dataQualityIssues")) {
dataQualityIssues = _json["dataQualityIssues"].map((value) => new AccountStatusDataQualityIssue.fromJson(value)).toList();
}
@@ -3256,6 +3261,9 @@ class AccountStatus {
if (accountId != null) {
_json["accountId"] = accountId;
}
+ if (accountLevelIssues != null) {
+ _json["accountLevelIssues"] = accountLevelIssues.map((value) => (value).toJson()).toList();
+ }
if (dataQualityIssues != null) {
_json["dataQualityIssues"] = dataQualityIssues.map((value) => (value).toJson()).toList();
}
@@ -3269,6 +3277,59 @@ class AccountStatus {
}
}
+class AccountStatusAccountLevelIssue {
+ /** Country for which this issue is reported. */
+ core.String country;
+ /** Additional details about the issue. */
+ core.String detail;
+ /** Issue identifier. */
+ core.String id;
+ /** Severity of the issue. */
+ core.String severity;
+ /** Short description of the issue. */
+ core.String title;
+
+ AccountStatusAccountLevelIssue();
+
+ AccountStatusAccountLevelIssue.fromJson(core.Map _json) {
+ if (_json.containsKey("country")) {
+ country = _json["country"];
+ }
+ if (_json.containsKey("detail")) {
+ detail = _json["detail"];
+ }
+ if (_json.containsKey("id")) {
+ id = _json["id"];
+ }
+ if (_json.containsKey("severity")) {
+ severity = _json["severity"];
+ }
+ if (_json.containsKey("title")) {
+ title = _json["title"];
+ }
+ }
+
+ core.Map<core.String, core.Object> toJson() {
+ final core.Map<core.String, core.Object> _json = new core.Map<core.String, core.Object>();
+ if (country != null) {
+ _json["country"] = country;
+ }
+ if (detail != null) {
+ _json["detail"] = detail;
+ }
+ if (id != null) {
+ _json["id"] = id;
+ }
+ if (severity != null) {
+ _json["severity"] = severity;
+ }
+ if (title != null) {
+ _json["title"] = title;
+ }
+ return _json;
+ }
+}
+
class AccountStatusDataQualityIssue {
/** Country for which this issue is reported. */
core.String country;
« 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