Class ConferenceData

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

MetodeJenis nilai yang ditampilkanDeskripsi singkat
printJson()StringMencetak representasi JSON dari objek ini.

Dokumentasi mendetail

printJson()

Mencetak representasi JSON dari objek ini. Opsi ini hanya untuk proses debug.

Nilai yang ditampilkan

String