Label
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
JSON 表示法 |
{
"fields": {
string: {
object (Field )
},
...
},
"id": string,
"revisionId": string,
"kind": string
} |
欄位 |
fields |
map (key: string, value: object (Field ))
標籤上欄位的對應,以欄位 ID 為鍵。 這個物件中包含 "key": value 組合的清單,範例:{ "name": "wrench", "mass": "1.3kg", "count": "3" } 。
|
id |
string
標籤的 ID。
|
revisionId |
string
標籤的修訂版本 ID。
|
kind |
string
這項資訊一律為 drive#label
|
欄位
JSON 表示法 |
{
"dateString": [
string
],
"integer": [
string
],
"selection": [
string
],
"text": [
string
],
"user": [
{
object (User )
}
],
"kind": string,
"id": string,
"valueType": string
} |
欄位 |
dateString[] |
string
只有在 valueType 為 dateString 時才會顯示。RFC 3339 格式的日期:YYYY-MM-DD。
|
integer[] |
string (int64 format)
只有在 valueType 為 integer 時才會顯示。
|
selection[] |
string
只有在 valueType 為 selection 時才會顯示
|
text[] |
string
只有在 valueType 為 text 時才會顯示。
|
user[] |
object (User )
只有在 valueType 為 user 時才會顯示。
|
kind |
string
這項屬性一律為 drive#labelField。
|
id |
string
這個標籤欄位的 ID。
|
valueType |
string
欄位類型。未來可能會支援新值,但目前可用的值如下:
dateString
integer
selection
text
user
|
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-25 (世界標準時間)。
[null,null,["上次更新時間:2025-07-25 (世界標準時間)。"],[],[],null,["# Label\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [Field](#Field)\n - [JSON representation](#Field.SCHEMA_REPRESENTATION)\n\nRepresentation of label and label fields.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"fields\": { string: { object (/workspace/drive/api/reference/rest/v3/Label#Field) }, ... }, \"id\": string, \"revisionId\": string, \"kind\": string } ``` |\n\n| Fields ||\n|--------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `fields` | `map (key: string, value: object (`[Field](/workspace/drive/api/reference/rest/v3/Label#Field)`))` A map of the fields on the label, keyed by the field's ID. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `id` | `string` The ID of the label. |\n| `revisionId` | `string` The revision ID of the label. |\n| `kind` | `string` This is always drive#label |\n\nField\n-----\n\nRepresentation of field, which is a typed key-value pair.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"dateString\": [ string ], \"integer\": [ string ], \"selection\": [ string ], \"text\": [ string ], \"user\": [ { object (/workspace/drive/api/reference/rest/v3/User) } ], \"kind\": string, \"id\": string, \"valueType\": string } ``` |\n\n| Fields ||\n|----------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `dateString[]` | `string` Only present if `valueType` is `dateString`. RFC 3339 formatted date: YYYY-MM-DD. |\n| `integer[]` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` Only present if `valueType` is `integer`. |\n| `selection[]` | `string` Only present if `valueType` is `selection` |\n| `text[]` | `string` Only present if `valueType` is `text`. |\n| `user[]` | `object (`[User](/workspace/drive/api/reference/rest/v3/User)`)` Only present if `valueType` is `user`. |\n| `kind` | `string` This is always drive#labelField. |\n| `id` | `string` The identifier of this label field. |\n| `valueType` | `string` The field type. While new values may be supported in the future, the following are currently allowed: - `dateString` - `integer` - `selection` - `text` - `user` |"]]