Class ConferenceData

ConferenceData

Contêiner para todas as informações relacionadas à conferência.

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 retornoBreve descrição
printJson()StringMostra a representação JSON desse objeto.

Documentação detalhada

printJson()

Mostra a representação JSON desse objeto. Isso é apenas para depuração.

Retorno

String