CalendarMeetingClient
public class CalendarMeetingClient
A client wrapper of the Cisco Webex Calendar Meeting API
Since
3.2.0-
The callback handler for incoming calendar meeting events.
Since
3.2.0Declaration
Swift
public var onEvent: ((CalendarMeetingEvent) -> Void)? { get set } -
Gives the list of calendar Webex meetings. By default meetings ranging from past one week to meetings scheduled till one month (approximately 30 days) is returned. Gives limited details for each calendar meeting. The meeting description for each meeting in the list will not be included. To obtain the full details for a given calendar meeting, including the description, use
CalendarMeetingClient.get(...).Since
3.2.0Declaration
Parameters
fromDateReturn calendar meetings whose start time is equal or after this value. If null, then meetings from past one week is returned
toDateReturn calendar meetings whose end time is equal or before this value. If null, then meetings till one month from current date is returned.
completionHandlerA closure to be executed once the request has finished.
Return Value
Void
-
Fetch a calendar meeting by meeting Id Gives full details for a calendar meeting, including the meeting description.
Since
3.2.0Declaration
Parameters
meetingIdThe meeting Id of the calendar meeting (Derived parameter: Use
CalendarMeetingClient.list(...)to get the list of calendar meetings. Then useMeeting.meetingIdto get the id of the calendar meeting)completionHandlerA closure to be executed once the request has finished.
Return Value
Void
-
Checks if the move meeting feature is supported for the given meeting.
Since
3.12.0Declaration
Swift
public func isMoveMeetingSupported(meetingId: String) -> BoolParameters
meetingIdThe meeting Id of the calendar meeting (Derived parameter: Use
CalendarMeetingClient.list(...)to get the list of calendar meetings. Then useMeeting.meetingIdto get the id of the calendar meeting)Return Value
bool true if the move meeting feature is supported, false otherwise
View on GitHub