Class ConferenceData
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();
Methoden
Methode | Rückgabetyp | Kurzbeschreibung |
printJson() | String | Die JSON-Darstellung dieses Objekts wird ausgegeben. |
Detaillierte Dokumentation
printJson()
Die JSON-Darstellung dieses Objekts wird ausgegeben. Diese Option ist nur für die Fehlerbehebung gedacht.
Rückflug
String
Sofern nicht anders angegeben, sind die Inhalte dieser Seite unter der Creative Commons Attribution 4.0 License und Codebeispiele unter der Apache 2.0 License lizenziert. Weitere Informationen finden Sie in den Websiterichtlinien von Google Developers. Java ist eine eingetragene Marke von Oracle und/oder seinen Partnern.
Zuletzt aktualisiert: 2024-12-22 (UTC).
[null,null,["Zuletzt aktualisiert: 2024-12-22 (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."]]],["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"]]