@@ -8116,34 +8116,54 @@ public List setMaxResults(java.lang.Integer maxResults) {
8116
8116
}
8117
8117
8118
8118
/**
8119
- * A comma-separated list of sort keys. Valid keys are `createdDate`, `folder`,
8120
- * `lastViewedByMeDate`, `modifiedByMeDate`, `modifiedDate`, `quotaBytesUsed`, `recency`,
8121
- * `sharedWithMeDate`, `starred`, `title`, and `title_natural`. Each key sorts ascending by
8122
- * default, but may be reversed with the `desc` modifier. Example usage:
8123
- * ?orderBy=folder,modifiedDate desc,title. Please note that there is a current limitation for
8124
- * users with approximately one million files in which the requested sort order is ignored.
8119
+ * A comma-separated list of sort keys. Valid keys are: * `createdDate`: When the file was
8120
+ * created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. *
8121
+ * `lastViewedByMeDate`: The last time the file was viewed by the user. * `modifiedByMeDate`:
8122
+ * The last time the file was modified by the user. * `modifiedDate`: The last time the file
8123
+ * was modified by anyone. * `quotaBytesUsed`: The number of storage quota bytes used by the
8124
+ * file. * `recency`: The most recent timestamp from the file's date-time fields. *
8125
+ * `sharedWithMeDate`: When the file was shared with the user, if applicable. * `starred`:
8126
+ * Whether the user has starred the file. * `title`: The title of the file. This field is
8127
+ * sorted using alphabetical ordering, so 1, 12, 2, 22. * `title_natural`: The title of the
8128
+ * file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. Each key sorts
8129
+ * ascending by default, but can be reversed with the 'desc' modifier. Example usage:
8130
+ * `?orderBy=folder,modifiedDate desc,title`. Note that there's a current limitation for users
8131
+ * with approximately one million files in which the requested sort order is ignored.
8125
8132
*/
8126
8133
@com.google.api.client.util.Key
8127
8134
private java.lang.String orderBy;
8128
8135
8129
- /** A comma-separated list of sort keys. Valid keys are `createdDate`, `folder`, `lastViewedByMeDate`,
8130
- `modifiedByMeDate`, `modifiedDate`, `quotaBytesUsed`, `recency`, `sharedWithMeDate`, `starred`,
8131
- `title`, and `title_natural`. Each key sorts ascending by default, but may be reversed with the
8132
- `desc` modifier. Example usage: ?orderBy=folder,modifiedDate desc,title. Please note that there is
8133
- a current limitation for users with approximately one million files in which the requested sort
8134
- order is ignored.
8136
+ /** A comma-separated list of sort keys. Valid keys are: * `createdDate`: When the file was created. *
8137
+ `folder`: The folder ID. This field is sorted using alphabetical ordering. * `lastViewedByMeDate`:
8138
+ The last time the file was viewed by the user. * `modifiedByMeDate`: The last time the file was
8139
+ modified by the user. * `modifiedDate`: The last time the file was modified by anyone. *
8140
+ `quotaBytesUsed`: The number of storage quota bytes used by the file. * `recency`: The most recent
8141
+ timestamp from the file's date-time fields. * `sharedWithMeDate`: When the file was shared with the
8142
+ user, if applicable. * `starred`: Whether the user has starred the file. * `title`: The title of
8143
+ the file. This field is sorted using alphabetical ordering, so 1, 12, 2, 22. * `title_natural`: The
8144
+ title of the file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. Each key
8145
+ sorts ascending by default, but can be reversed with the 'desc' modifier. Example usage:
8146
+ `?orderBy=folder,modifiedDate desc,title`. Note that there's a current limitation for users with
8147
+ approximately one million files in which the requested sort order is ignored.
8135
8148
*/
8136
8149
public java.lang.String getOrderBy() {
8137
8150
return orderBy;
8138
8151
}
8139
8152
8140
8153
/**
8141
- * A comma-separated list of sort keys. Valid keys are `createdDate`, `folder`,
8142
- * `lastViewedByMeDate`, `modifiedByMeDate`, `modifiedDate`, `quotaBytesUsed`, `recency`,
8143
- * `sharedWithMeDate`, `starred`, `title`, and `title_natural`. Each key sorts ascending by
8144
- * default, but may be reversed with the `desc` modifier. Example usage:
8145
- * ?orderBy=folder,modifiedDate desc,title. Please note that there is a current limitation for
8146
- * users with approximately one million files in which the requested sort order is ignored.
8154
+ * A comma-separated list of sort keys. Valid keys are: * `createdDate`: When the file was
8155
+ * created. * `folder`: The folder ID. This field is sorted using alphabetical ordering. *
8156
+ * `lastViewedByMeDate`: The last time the file was viewed by the user. * `modifiedByMeDate`:
8157
+ * The last time the file was modified by the user. * `modifiedDate`: The last time the file
8158
+ * was modified by anyone. * `quotaBytesUsed`: The number of storage quota bytes used by the
8159
+ * file. * `recency`: The most recent timestamp from the file's date-time fields. *
8160
+ * `sharedWithMeDate`: When the file was shared with the user, if applicable. * `starred`:
8161
+ * Whether the user has starred the file. * `title`: The title of the file. This field is
8162
+ * sorted using alphabetical ordering, so 1, 12, 2, 22. * `title_natural`: The title of the
8163
+ * file. This field is sorted using natural sort ordering, so 1, 2, 12, 22. Each key sorts
8164
+ * ascending by default, but can be reversed with the 'desc' modifier. Example usage:
8165
+ * `?orderBy=folder,modifiedDate desc,title`. Note that there's a current limitation for users
8166
+ * with approximately one million files in which the requested sort order is ignored.
8147
8167
*/
8148
8168
public List setOrderBy(java.lang.String orderBy) {
8149
8169
this.orderBy = orderBy;
0 commit comments