Stay organized with collections
Save and categorize content based on your preferences.
ConferenceData
Container for all conference-related information.
var conferenceId;
// Set the conference ID, that is, the identifier your system creates for the meeting.
var entryPoint = ConferenceDataService.newEntryPoint();
// Finish building the entry point ...
var conferenceParameter = ConferenceDataService.newConferenceParameter();
// Finish building the parameter ...
var conferenceData = 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-10-31 UTC."],[[["`ConferenceData` objects store all conference-related information, including ID, entry points, and parameters."],["You can create a `ConferenceData` object using a builder pattern, setting properties like conference ID, entry points, and parameters."],["The `printJson()` method provides a JSON representation of the `ConferenceData` object, useful for debugging purposes."]]],[]]