모든 회의 관련 정보를 위한 컨테이너입니다.
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