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