Class ConferenceData

ConferenceData

Contenitore per tutte le informazioni relative alle conferenze.

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

Metodi

MetodoTipo restituitoBreve descrizione
printJson()StringStampa la rappresentazione JSON dell'oggetto.

Documentazione dettagliata

printJson()

Stampa la rappresentazione JSON dell'oggetto. Serve solo per il debug.

Ritorni

String