Class ConferenceData

ConferenceData

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

var conferenceId;
// Set the conference ID, that is, the identifier your system creates for the meeting.

var entryPoint = ConferenceDataService.newEntryPoint();
// Finish building the entry point ...

var conferenceParameter = ConferenceDataService.newConferenceParameter();
// Finish building the parameter ...

var conferenceData = ConferenceDataService.newConferenceDataBuilder()
    .setConferenceId(conferenceId);
    .addEntryPoint(entryPoint)
    .addConferenceParameter(conferenceParameter)
    .build();

Phương thức

Phương thứcLoại dữ liệu trả vềMô tả ngắn
printJson()StringIn bản trình bày JSON của đối tượng này.

Tài liệu chi tiết

printJson()

In bản trình bày JSON của đối tượng này. Thao tác này chỉ dành cho mục đích gỡ lỗi.

Cầu thủ trả bóng

String