Class ConferenceData
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
KonferencjaDane
Pojemnik na wszystkie informacje związane z konferencją.
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();
Metody
Metoda | Zwracany typ | Krótki opis |
printJson() | String | Wypisuje reprezentację obiektu w formacie JSON. |
Szczegółowa dokumentacja
printJson()
Wypisuje reprezentację obiektu w formacie JSON. Jest to tylko funkcja debugowania.
Powrót
String
O ile nie stwierdzono inaczej, treść tej strony jest objęta licencją Creative Commons – uznanie autorstwa 4.0, a fragmenty kodu są dostępne na licencji Apache 2.0. Szczegółowe informacje na ten temat zawierają zasady dotyczące witryny Google Developers. Java jest zastrzeżonym znakiem towarowym firmy Oracle i jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-26 UTC.
[null,null,["Ostatnia aktualizacja: 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`"]]