| 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();
|
| }
|
|
|