Class ConferenceData
ConferenceData
Kontener na wszystkie informacje dotyczące konferencji.
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();
Metody
Metoda | Zwracany typ | Krótki opis |
printJson() | String | Wypisuje reprezentację tego obiektu w formacie JSON. |
Szczegółowa dokumentacja
printJson()
Wypisuje reprezentację tego obiektu w formacie JSON. Służy tylko do debugowania.
Powrót
String
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2024-08-21 UTC.
[null,null,["Ostatnia aktualizacja: 2024-08-21 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."]]],[]]