Class ConferenceData

ConferenceData

Conteneur pour toutes les informations relatives à la conférence.

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éthodes

MéthodeType renvoyéBrève description
printJson()StringAffiche la représentation JSON de cet objet.

Documentation détaillée

printJson()

Affiche la représentation JSON de cet objet. Elle sert uniquement au débogage.

Renvois

String