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
— หากค่าที่ระบุยาวเกินไป
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 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."]]