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

Unified Diff: generated/googleapis/lib/storage/v1.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/lib/slides/v1.dart ('k') | generated/googleapis/lib/tagmanager/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/storage/v1.dart
diff --git a/generated/googleapis/lib/storage/v1.dart b/generated/googleapis/lib/storage/v1.dart
index 0d148d247530b86bd62c5ae9e2a646e41c747b7a..79a04eb42fc2ff1778707ff74d5daf4c3969eb11 100644
--- a/generated/googleapis/lib/storage/v1.dart
+++ b/generated/googleapis/lib/storage/v1.dart
@@ -3790,6 +3790,11 @@ class Object {
* only if this version of the object has been deleted.
*/
core.DateTime timeDeleted;
+ /**
+ * The time at which the object's storage class was last changed. When the
+ * object is initially created, it will be set to timeCreated.
+ */
+ core.DateTime timeStorageClassUpdated;
/** The modification time of the object metadata in RFC 3339 format. */
core.DateTime updated;
@@ -3871,6 +3876,9 @@ class Object {
if (_json.containsKey("timeDeleted")) {
timeDeleted = core.DateTime.parse(_json["timeDeleted"]);
}
+ if (_json.containsKey("timeStorageClassUpdated")) {
+ timeStorageClassUpdated = core.DateTime.parse(_json["timeStorageClassUpdated"]);
+ }
if (_json.containsKey("updated")) {
updated = core.DateTime.parse(_json["updated"]);
}
@@ -3953,6 +3961,9 @@ class Object {
if (timeDeleted != null) {
_json["timeDeleted"] = (timeDeleted).toIso8601String();
}
+ if (timeStorageClassUpdated != null) {
+ _json["timeStorageClassUpdated"] = (timeStorageClassUpdated).toIso8601String();
+ }
if (updated != null) {
_json["updated"] = (updated).toIso8601String();
}
« no previous file with comments | « generated/googleapis/lib/slides/v1.dart ('k') | generated/googleapis/lib/tagmanager/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698