Class ConferenceData

ConferenceData

Contenedor para toda la información relacionada con la conferencia.

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

Métodos

MétodoTipo de datos que se muestraDescripción breve
printJson()StringImprime la representación JSON de este objeto.

Documentación detallada

printJson()

Imprime la representación JSON de este objeto. Esto es solo para depuración.

Devolvedor

String