Class ConferenceData

بيانات المؤتمر

حاوية لجميع المعلومات المتعلّقة بالمؤتمر

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();

الطُرق

الطريقةنوع القيمة التي يتم عرضهاوصف قصير
printJson()Stringتُطبع تمثيل JSON لهذا الكائن.

مستندات تفصيلية

printJson()

تُطبع تمثيل JSON لهذا الكائن. يُستخدم هذا الخيار لتصحيح الأخطاء فقط.

الإرجاع

String