Class ConferenceData

ConferenceData

Conteneur pour toutes les informations liées aux conférences.

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. Il n'est utilisé qu'à des fins de débogage.

Renvois

String