Class ConferenceData
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
ConferenceData
Penampung untuk semua informasi terkait konferensi.
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();
Metode
| Metode | Jenis nilai yang ditampilkan | Deskripsi singkat |
printJson() | String | Mencetak representasi JSON dari objek ini. |
Dokumentasi mendetail
printJson()
Mencetak representasi JSON dari objek ini. Opsi ini hanya untuk proses debug.
Nilai yang ditampilkan
String
Kecuali dinyatakan lain, konten di halaman ini dilisensikan berdasarkan Lisensi Creative Commons Attribution 4.0, sedangkan contoh kode dilisensikan berdasarkan Lisensi Apache 2.0. Untuk mengetahui informasi selengkapnya, lihat Kebijakan Situs Google Developers. Java adalah merek dagang terdaftar dari Oracle dan/atau afiliasinya.
Terakhir diperbarui pada 2026-04-13 UTC.
[null,null,["Terakhir diperbarui pada 2026-04-13 UTC."],[],["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"]]