カンファレンス関連のすべての情報を格納するコンテナ。
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();
メソッド
メソッド | 戻り値の型 | 概要 |
---|---|---|
print | String | このオブジェクトの JSON 表現を出力します。 |
詳細なドキュメント
print Json()
このオブジェクトの JSON 表現を出力します。これはデバッグ専用です。
戻る
String