Class ConferenceData

ConferenceData

Vùng chứa tất cả thông tin liên quan đến hội nghị.

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

Phương thức

Phương thứcKiểu dữ liệu trả vềMô tả ngắn
printJson()StringIn biểu thị JSON của đối tượng này.

Tài liệu chi tiết

printJson()

In biểu thị JSON của đối tượng này. Thông tin này chỉ dùng để gỡ lỗi.

Cầu thủ trả bóng

String