Stay organized with collections
Save and categorize content based on your preferences.
ConferenceData
Container for all conference-related information.
letconferenceId;// Set the conference ID, that is, the identifier your system creates for the// meeting.constentryPoint=ConferenceDataService.newEntryPoint();// Finish building the entry point ...constconferenceParameter=ConferenceDataService.newConferenceParameter();// Finish building the parameter ...constconferenceData=ConferenceDataService.newConferenceDataBuilder().setConferenceId(conferenceId).addEntryPoint(entryPoint).addConferenceParameter(conferenceParameter).build();
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-12-02 UTC."],[[["\u003cp\u003e\u003ccode\u003eConferenceData\u003c/code\u003e objects store all conference-related information, including ID, entry points, and parameters.\u003c/p\u003e\n"],["\u003cp\u003eYou can create a \u003ccode\u003eConferenceData\u003c/code\u003e object using a builder pattern, setting properties like conference ID, entry points, and parameters.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eprintJson()\u003c/code\u003e method provides a JSON representation of the \u003ccode\u003eConferenceData\u003c/code\u003e object, useful for debugging purposes.\u003c/p\u003e\n"]]],["The `ConferenceData` container holds all meeting-related details. A unique `conferenceId` is set, and an `entryPoint` and `conferenceParameter` are created and added. The `ConferenceData` is built using `ConferenceDataService`. The `printJson()` method, which returns a `String`, provides a JSON representation of the object for debugging purposes. The core process involves creating an identifier and constructing the necessary conference information elements.\n"],null,["ConferenceData\n\nContainer for all conference-related information.\n\n```javascript\nlet conferenceId;\n// Set the conference ID, that is, the identifier your system creates for the\n// meeting.\n\nconst entryPoint = ConferenceDataService.newEntryPoint();\n// Finish building the entry point ...\n\nconst conferenceParameter = ConferenceDataService.newConferenceParameter();\n// Finish building the parameter ...\n\nconst conferenceData = ConferenceDataService.newConferenceDataBuilder()\n .setConferenceId(conferenceId)\n .addEntryPoint(entryPoint)\n .addConferenceParameter(conferenceParameter)\n .build();\n``` \n\nMethods\n\n| Method | Return type | Brief description |\n|-----------------------------|-------------|------------------------------------------------|\n| [printJson()](#printJson()) | `String` | Prints the JSON representation of this object. |\n\nDetailed documentation \n\n`print``Json()` \nPrints the JSON representation of this object. This is for debugging only.\n\nReturn\n\n\n`String`"]]