Class ConferenceData

KonferencjaDane

Pojemnik na wszystkie informacje związane z konferencją.

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

Metody

MetodaZwracany typKrótki opis
printJson()StringWypisuje reprezentację obiektu w formacie JSON.

Szczegółowa dokumentacja

printJson()

Wypisuje reprezentację obiektu w formacie JSON. Jest to tylko funkcja debugowania.

Powrót

String