Class ConferenceData

ConferenceData

Container für alle konferenzbezogenen 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

MethodeRückgabetypKurzbeschreibung
printJson()StringGibt die JSON-Darstellung dieses Objekts aus.

Detaillierte Dokumentation

printJson()

Gibt die JSON-Darstellung dieses Objekts aus. Dies dient nur zu Debugging-Zwecken.

Rückflug

String