Class ConferenceData

  • ConferenceData objects store all conference-related information, including ID, entry points, and parameters.

  • You can create a ConferenceData object using a builder pattern, setting properties like conference ID, entry points, and parameters.

  • The printJson() method provides a JSON representation of the ConferenceData object, useful for debugging purposes.

ConferenceData

Container for all conference-related information.

let conferenceId; // Set the conference ID, that is, the identifier your system creates for the // meeting. const entryPoint = ConferenceDataService.newEntryPoint(); // Finish building the entry point ... const conferenceParameter = ConferenceDataService.newConferenceParameter(); // Finish building the parameter ... const 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