Class ConferenceData Stay organized with collections Save and categorize content based on your preferences.
Page Summary
ConferenceData is a container for all conference-related information.
You can build a ConferenceData object using the
ConferenceDataService.newConferenceDataBuilder()method.The
printJson()method allows you to print the JSON representation of the ConferenceData object for debugging purposes.
ConferenceData
Container for all conference-related information.
letconferenceId;// Set the conference ID, that is, the identifier your system creates for the// meeting.constentryPoint=ConferenceDataService.newEntryPoint();// Finish building the entry point ...constconferenceParameter=ConferenceDataService.newConferenceParameter();// Finish building the parameter ...constconferenceData=ConferenceDataService.newConferenceDataBuilder().setConferenceId(conferenceId).addEntryPoint(entryPoint).addConferenceParameter(conferenceParameter).build();
Methods
| Method | Return type | Brief description |
|---|---|---|
print | String | Prints the JSON representation of this object. |
Detailed documentation
printJson()
Prints the JSON representation of this object. This is for debugging only.
Return
String
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-11 UTC.