Class ConferenceParameter
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
कॉन्फ़्रेंसपैरामीटर
समस्या हल करने के लिए, ऐड-ऑन के इस्तेमाल के लिए उपलब्ध पैरामीटर. यह पैरामीटर, कॉन्फ़्रेंस के डेटा के साथ सेव रहता है. अगर इसे अपडेट या मिटाना ज़रूरी हो, तो इसे ऐड-ऑन को भेज दिया जाता है. इस्तेमाल का उदाहरण:
const conferenceParameter = ConferenceDataService.newConferenceParameter()
.setKey('meetingId')
.setValue('123456');
ज़्यादा जानकारी वाला दस्तावेज़
setKey(key)
इस ConferenceParameter
की कुंजी सेट करता है. इस फ़ील्ड में ज़्यादा से ज़्यादा 50 वर्ण इस्तेमाल किए जा सकते हैं. ज़रूरी है.
पैरामीटर
नाम | टाइप | ब्यौरा |
key | String | सेट की जाने वाली कुंजी. |
वापसी का टिकट
ConferenceParameter
— चेन करने के लिए यह ऑब्जेक्ट
थ्रो
Error
— अगर दी गई कुंजी बहुत लंबी है.
setValue(value)
इस ConferenceParameter
की वैल्यू सेट करता है. इस फ़ील्ड में ज़्यादा से ज़्यादा 1,024 वर्ण इस्तेमाल किए जा सकते हैं. ज़रूरी है.
पैरामीटर
नाम | टाइप | ब्यौरा |
value | String | सेट की जाने वाली वैल्यू. |
वापसी का टिकट
ConferenceParameter
— चेन करने के लिए यह ऑब्जेक्ट
थ्रो
Error
— अगर दी गई वैल्यू बहुत लंबी है.
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003e\u003ccode\u003eConferenceParameter\u003c/code\u003e objects store solution-specific parameters for add-ons, persisting with conference data and utilized for updates or deletions.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use the \u003ccode\u003esetKey(key)\u003c/code\u003e method to assign a key (up to 50 characters) and \u003ccode\u003esetValue(value)\u003c/code\u003e to assign a value (up to 1024 characters) to these parameters.\u003c/p\u003e\n"],["\u003cp\u003eBoth \u003ccode\u003esetKey\u003c/code\u003e and \u003ccode\u003esetValue\u003c/code\u003e methods return the \u003ccode\u003eConferenceParameter\u003c/code\u003e object, allowing for chained method calls for efficient setup.\u003c/p\u003e\n"],["\u003cp\u003eExceeding the maximum length for keys or values when using \u003ccode\u003esetKey(key)\u003c/code\u003e or \u003ccode\u003esetValue(value)\u003c/code\u003e will result in an error.\u003c/p\u003e\n"]]],[],null,["# Class ConferenceParameter\n\nConferenceParameter\n\nSolution-specific parameter available fo the add-on's use. This parameter is persisted with the\nconference data and, if an update or delete is needed, is passed to the add-on. Example usage:\n\n```javascript\nconst conferenceParameter = ConferenceDataService.newConferenceParameter()\n .setKey('meetingId')\n .setValue('123456');\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|--------------------------------------|--------------------------|--------------------------------------------------|\n| [setKey(key)](#setKey(String)) | [ConferenceParameter](#) | Sets the key of this [ConferenceParameter](#). |\n| [setValue(value)](#setValue(String)) | [ConferenceParameter](#) | Sets the value of this [ConferenceParameter](#). |\n\nDetailed documentation\n----------------------\n\n### `set``Key(key)`\n\nSets the key of this [ConferenceParameter](#). The maximum length for this field is 50\ncharacters. Required.\n\n#### Parameters\n\n| Name | Type | Description |\n|-------|----------|-----------------|\n| `key` | `String` | The key to set. |\n\n#### Return\n\n\n[ConferenceParameter](#) --- this object, for chaining\n\n#### Throws\n\n\n[`Error`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) --- if the provided key is too long.\n\n*** ** * ** ***\n\n### `set``Value(value)`\n\nSets the value of this [ConferenceParameter](#). The maximum length for this field is 1024\ncharacters. Required.\n\n#### Parameters\n\n| Name | Type | Description |\n|---------|----------|-------------------|\n| `value` | `String` | The value to set. |\n\n#### Return\n\n\n[ConferenceParameter](#) --- this object, for chaining\n\n#### Throws\n\n\n[`Error`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) --- if the provided value is too long."]]