Class ConferenceData
Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Données de la conférence
Conteneur de toutes les informations liées à la conférence.
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();
Méthodes
Méthode | Type renvoyé | Brève description |
printJson() | String | Imprime la représentation JSON de cet objet. |
Documentation détaillée
printJson()
Imprime la représentation JSON de cet objet. Cette option est réservée au débogage.
Renvois
String
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/07/26 (UTC).
[null,null,["Dernière mise à jour le 2025/07/26 (UTC)."],[[["\u003cp\u003e\u003ccode\u003eConferenceData\u003c/code\u003e objects store all conference-related information, including ID, entry points, and parameters.\u003c/p\u003e\n"],["\u003cp\u003eYou can create a \u003ccode\u003eConferenceData\u003c/code\u003e object using a builder pattern, setting properties like conference ID, entry points, and parameters.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eprintJson()\u003c/code\u003e method provides a JSON representation of the \u003ccode\u003eConferenceData\u003c/code\u003e object, useful for debugging purposes.\u003c/p\u003e\n"]]],["The `ConferenceData` container holds all meeting-related details. A unique `conferenceId` is set, and an `entryPoint` and `conferenceParameter` are created and added. The `ConferenceData` is built using `ConferenceDataService`. The `printJson()` method, which returns a `String`, provides a JSON representation of the object for debugging purposes. The core process involves creating an identifier and constructing the necessary conference information elements.\n"],null,["# Class ConferenceData\n\nConferenceData\n\nContainer for all conference-related information.\n\n```javascript\nlet conferenceId;\n// Set the conference ID, that is, the identifier your system creates for the\n// meeting.\n\nconst entryPoint = ConferenceDataService.newEntryPoint();\n// Finish building the entry point ...\n\nconst conferenceParameter = ConferenceDataService.newConferenceParameter();\n// Finish building the parameter ...\n\nconst conferenceData = ConferenceDataService.newConferenceDataBuilder()\n .setConferenceId(conferenceId)\n .addEntryPoint(entryPoint)\n .addConferenceParameter(conferenceParameter)\n .build();\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|-----------------------------|-------------|------------------------------------------------|\n| [printJson()](#printJson()) | `String` | Prints the JSON representation of this object. |\n\nDetailed documentation\n----------------------\n\n### `print``Json()`\n\nPrints the JSON representation of this object. This is for debugging only.\n\n#### Return\n\n\n`String`"]]