import { StatelessWebexPlugin } from '@webex/webex-core'; /** * @class MeetingRequest */ export default class MeetingRequest extends StatelessWebexPlugin { /** * get all the active meetings for the user * @returns {Array} return locus array */ getActiveMeetings(): any; /** * fetch geoHit for the user * @returns {Promise} geoHintInfo */ fetchGeoHint(): any; /** * get user meeting preference information * @returns {Promise} getMeetingPreferences */ getMeetingPreferences(): any; /** * Fetches indivdual locus rather then getting all at once * @param {object} responseBody determine the locus and fetch them if a remoteUrl is given * @returns {Promise} returns locusObject array */ determineRedirections(responseBody: any): Promise; }