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.v3; | 3 library googleapis.drive.v3; |
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; | 7 import 'dart:convert' as convert; |
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 3612 matching lines...) Loading... |
3623 /** Whether the file has been modified by this user. */ | 3623 /** Whether the file has been modified by this user. */ |
3624 core.bool modifiedByMe; | 3624 core.bool modifiedByMe; |
3625 /** The last time the file was modified by the user (RFC 3339 date-time). */ | 3625 /** The last time the file was modified by the user (RFC 3339 date-time). */ |
3626 core.DateTime modifiedByMeTime; | 3626 core.DateTime modifiedByMeTime; |
3627 /** | 3627 /** |
3628 * The last time the file was modified by anyone (RFC 3339 date-time). | 3628 * The last time the file was modified by anyone (RFC 3339 date-time). |
3629 * Note that setting modifiedTime will also update modifiedByMeTime for the | 3629 * Note that setting modifiedTime will also update modifiedByMeTime for the |
3630 * user. | 3630 * user. |
3631 */ | 3631 */ |
3632 core.DateTime modifiedTime; | 3632 core.DateTime modifiedTime; |
3633 /** The name of the file. This is not necessarily unique within a folder. */ | 3633 /** |
| 3634 * The name of the file. This is not necessarily unique within a folder. Note |
| 3635 * that for immutable items such as the top level folders of Team Drives, My |
| 3636 * Drive root folder, and Application Data folder the name is constant. |
| 3637 */ |
3634 core.String name; | 3638 core.String name; |
3635 /** | 3639 /** |
3636 * The original filename of the uploaded content if available, or else the | 3640 * The original filename of the uploaded content if available, or else the |
3637 * original value of the name field. This is only available for files with | 3641 * original value of the name field. This is only available for files with |
3638 * binary content in Drive. | 3642 * binary content in Drive. |
3639 */ | 3643 */ |
3640 core.String originalFilename; | 3644 core.String originalFilename; |
3641 /** Whether the user owns the file. Not populated for Team Drive files. */ | 3645 /** Whether the user owns the file. Not populated for Team Drive files. */ |
3642 core.bool ownedByMe; | 3646 core.bool ownedByMe; |
3643 /** | 3647 /** |
(...skipping 1443 matching lines...) Loading... |
5087 } | 5091 } |
5088 if (permissionId != null) { | 5092 if (permissionId != null) { |
5089 _json["permissionId"] = permissionId; | 5093 _json["permissionId"] = permissionId; |
5090 } | 5094 } |
5091 if (photoLink != null) { | 5095 if (photoLink != null) { |
5092 _json["photoLink"] = photoLink; | 5096 _json["photoLink"] = photoLink; |
5093 } | 5097 } |
5094 return _json; | 5098 return _json; |
5095 } | 5099 } |
5096 } | 5100 } |
OLD | NEW |