Class ConferenceData

ConferenceData

Container for all conference-related information.

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

Methods

MethodReturn typeBrief description
printJson()StringPrints the JSON representation of this object.

Detailed documentation

printJson()

Prints the JSON representation of this object. This is for debugging only.

Return

String