Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
KonferenzDaten
Container für alle mit der Konferenz verbundenen Informationen.
let conferenceId;
// Set the conference ID, that is, the identifier your system creates for the
// meeting.
const entryPoint = ConferenceDataService.newEntryPoint();
// Finish building the entry point ...
const conferenceParameter = ConferenceDataService.newConferenceParameter();
// Finish building the parameter ...
const conferenceData = ConferenceDataService.newConferenceDataBuilder()
.setConferenceId(conferenceId)
.addEntryPoint(entryPoint)
.addConferenceParameter(conferenceParameter)
.build();
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2024-12-02 (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."]]],[]]