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

Unified Diff: generated/googleapis/lib/analytics/v3.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
Index: generated/googleapis/lib/analytics/v3.dart
diff --git a/generated/googleapis/lib/analytics/v3.dart b/generated/googleapis/lib/analytics/v3.dart
index 2c644fb43e8a19998c6571a5209f0b2b0010e116..8bcc18a378e82a29a36b755e73d4687fac4524ab 100644
--- a/generated/googleapis/lib/analytics/v3.dart
+++ b/generated/googleapis/lib/analytics/v3.dart
@@ -5810,12 +5810,15 @@ class CustomDataSource {
CustomDataSourceParentLink parentLink;
/** IDs of views (profiles) linked to the custom data source. */
core.List<core.String> profilesLinked;
+ /** Collection of schema headers of the custom data source. */
+ core.List<core.String> schema;
/** Link for this Analytics custom data source. */
core.String selfLink;
/** Type of the custom data source. */
core.String type;
/** Time this custom data source was last modified. */
core.DateTime updated;
+ /** Upload type of the custom data source. */
core.String uploadType;
/**
* Web property ID of the form UA-XXXXX-YY to which this custom data source
@@ -5856,6 +5859,9 @@ class CustomDataSource {
if (_json.containsKey("profilesLinked")) {
profilesLinked = _json["profilesLinked"];
}
+ if (_json.containsKey("schema")) {
+ schema = _json["schema"];
+ }
if (_json.containsKey("selfLink")) {
selfLink = _json["selfLink"];
}
@@ -5905,6 +5911,9 @@ class CustomDataSource {
if (profilesLinked != null) {
_json["profilesLinked"] = profilesLinked;
}
+ if (schema != null) {
+ _json["schema"] = schema;
+ }
if (selfLink != null) {
_json["selfLink"] = selfLink;
}
@@ -11672,6 +11681,8 @@ class Upload {
* DELETED.
*/
core.String status;
+ /** Time this file is uploaded. */
+ core.DateTime uploadTime;
Upload();
@@ -11694,6 +11705,9 @@ class Upload {
if (_json.containsKey("status")) {
status = _json["status"];
}
+ if (_json.containsKey("uploadTime")) {
+ uploadTime = core.DateTime.parse(_json["uploadTime"]);
+ }
}
core.Map<core.String, core.Object> toJson() {
@@ -11716,6 +11730,9 @@ class Upload {
if (status != null) {
_json["status"] = status;
}
+ if (uploadTime != null) {
+ _json["uploadTime"] = (uploadTime).toIso8601String();
+ }
return _json;
}
}
« no previous file with comments | « generated/googleapis/lib/adexperiencereport/v1.dart ('k') | generated/googleapis/lib/androiddeviceprovisioning/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698