| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis.drive.v2; | 3 library googleapis.drive.v2; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert_1; | 7 import 'dart:convert' as convert_1; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| (...skipping 6419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6430 */ | 6430 */ |
| 6431 FileThumbnail thumbnail; | 6431 FileThumbnail thumbnail; |
| 6432 /** | 6432 /** |
| 6433 * A short-lived link to the file's thumbnail. Typically lasts on the order of | 6433 * A short-lived link to the file's thumbnail. Typically lasts on the order of |
| 6434 * hours. Only populated when the requesting app can access the file's | 6434 * hours. Only populated when the requesting app can access the file's |
| 6435 * content. | 6435 * content. |
| 6436 */ | 6436 */ |
| 6437 core.String thumbnailLink; | 6437 core.String thumbnailLink; |
| 6438 /** The thumbnail version for use in thumbnail cache invalidation. */ | 6438 /** The thumbnail version for use in thumbnail cache invalidation. */ |
| 6439 core.String thumbnailVersion; | 6439 core.String thumbnailVersion; |
| 6440 /** The title of this file. */ | 6440 /** |
| 6441 * The title of this file. Note that for immutable items such as the top level |
| 6442 * folders of Team Drives, My Drive root folder, and Application Data folder |
| 6443 * the title is constant. |
| 6444 */ |
| 6441 core.String title; | 6445 core.String title; |
| 6442 /** | 6446 /** |
| 6443 * The time that the item was trashed (formatted RFC 3339 timestamp). Only | 6447 * The time that the item was trashed (formatted RFC 3339 timestamp). Only |
| 6444 * populated for Team Drive files. | 6448 * populated for Team Drive files. |
| 6445 */ | 6449 */ |
| 6446 core.DateTime trashedDate; | 6450 core.DateTime trashedDate; |
| 6447 /** | 6451 /** |
| 6448 * If the file has been explicitly trashed, the user who trashed it. Only | 6452 * If the file has been explicitly trashed, the user who trashed it. Only |
| 6449 * populated for Team Drive files. | 6453 * populated for Team Drive files. |
| 6450 */ | 6454 */ |
| (...skipping 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8155 } | 8159 } |
| 8156 if (permissionId != null) { | 8160 if (permissionId != null) { |
| 8157 _json["permissionId"] = permissionId; | 8161 _json["permissionId"] = permissionId; |
| 8158 } | 8162 } |
| 8159 if (picture != null) { | 8163 if (picture != null) { |
| 8160 _json["picture"] = (picture).toJson(); | 8164 _json["picture"] = (picture).toJson(); |
| 8161 } | 8165 } |
| 8162 return _json; | 8166 return _json; |
| 8163 } | 8167 } |
| 8164 } | 8168 } |
| OLD | NEW |