Class ConferenceData

Datisulla conferenza

Contenitore di tutte le informazioni relative alla conferenza.

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();

Metodi

MetodoTipo restituitoBreve descrizione
printJson()StringStampa la rappresentazione JSON di questo oggetto.

Documentazione dettagliata

printJson()

Stampa la rappresentazione JSON di questo oggetto. Questo è solo per il debug.

Invio

String