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