Label
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
लेबल और लेबल फ़ील्ड का उदाहरण.
JSON के काेड में दिखाना |
{
"fields": {
string: {
object (Field )
},
...
},
"id": string,
"revisionId": string,
"kind": string
} |
फ़ील्ड |
fields |
map (key: string, value: object (Field ))
लेबल पर मौजूद फ़ील्ड का मैप, जिसे फ़ील्ड के आईडी के हिसाब से क्रम में लगाया गया है. यह एक ऐसा ऑब्जेक्ट है जिसमें "key": value जोड़े की सूची होती है. उदाहरण: { "name": "wrench", "mass": "1.3kg", "count": "3" } .
|
id |
string
लेबल का आईडी.
|
revisionId |
string
लेबल का वर्शन आईडी.
|
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
इस लेबल फ़ील्ड का आइडेंटिफ़ायर.
|
valueType |
string
फ़ील्ड का टाइप. हालांकि, आने वाले समय में नई वैल्यू इस्तेमाल की जा सकती हैं. फ़िलहाल, ये वैल्यू इस्तेमाल की जा सकती हैं:
dateString
integer
selection
text
user
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-24 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-24 (UTC) को अपडेट किया गया."],[],[],null,["# Label\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [Field](#Field)\n - [JSON representation](#Field.SCHEMA_REPRESENTATION)\n\nRepresentation of a label and label fields.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"fields\": { string: { object (/workspace/drive/api/reference/rest/v2/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/v2/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/v2/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/v2/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` |"]]