Class ConferenceData
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Datisulla conferenza
Contenitore di tutte le informazioni relative alla conferenza.
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();
Metodi
Metodo | Tipo restituito | Breve descrizione |
printJson() | String | Stampa la rappresentazione JSON di questo oggetto. |
Documentazione dettagliata
printJson()
Stampa la rappresentazione JSON di questo oggetto. Questo è solo per il debug.
Invio
String
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2025-07-26 UTC.
[null,null,["Ultimo aggiornamento 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`"]]