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

Unified Diff: generated/googleapis/lib/analyticsreporting/v4.dart

Issue 2571553005: Api-roll 43: 2016-12-13 (Closed)
Patch Set: Created 4 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/README.md ('k') | generated/googleapis/lib/androidenterprise/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/analyticsreporting/v4.dart
diff --git a/generated/googleapis/lib/analyticsreporting/v4.dart b/generated/googleapis/lib/analyticsreporting/v4.dart
index 8df2d1228772309f3c8083272e995175d76aba11..1d0b96f54dd53151fba9e7bd6666ffd8eca5635a 100644
--- a/generated/googleapis/lib/analyticsreporting/v4.dart
+++ b/generated/googleapis/lib/analyticsreporting/v4.dart
@@ -1197,6 +1197,11 @@ class Report {
/** The data part of the report. */
class ReportData {
/**
+ * The last time the data in the report was refreshed. All the hits received
+ * before this timestamp are included in the calculation of the report.
+ */
+ core.String dataLastRefreshed;
+ /**
* Indicates if response to this request is golden or not. Data is
* golden when the exact same request will not produce any new results if
* asked at a later point in time.
@@ -1252,6 +1257,9 @@ class ReportData {
ReportData();
ReportData.fromJson(core.Map _json) {
+ if (_json.containsKey("dataLastRefreshed")) {
+ dataLastRefreshed = _json["dataLastRefreshed"];
+ }
if (_json.containsKey("isDataGolden")) {
isDataGolden = _json["isDataGolden"];
}
@@ -1280,6 +1288,9 @@ class ReportData {
core.Map toJson() {
var _json = new core.Map();
+ if (dataLastRefreshed != null) {
+ _json["dataLastRefreshed"] = dataLastRefreshed;
+ }
if (isDataGolden != null) {
_json["isDataGolden"] = isDataGolden;
}
« no previous file with comments | « generated/googleapis/README.md ('k') | generated/googleapis/lib/androidenterprise/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698