CalendarMeetingClient
public class CalendarMeetingClientA client wrapper of the Cisco Webex Calendar Meeting API
Since
3.2.0- 
                  
                  The callback handler for incoming calendar meeting events. Since 3.2.0DeclarationSwift 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.0DeclarationParametersfromDateReturn 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 ValueVoid 
- 
                  
                  Fetch a calendar meeting by meeting Id Gives full details for a calendar meeting, including the meeting description. Since 3.2.0DeclarationParametersmeetingIdThe 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 ValueVoid 
- 
                  
                  Checks if the move meeting feature is supported for the given meeting. Since 3.12.0DeclarationSwift public func isMoveMeetingSupported(meetingId: String) -> BoolParametersmeetingIdThe 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 Valuebool true if the move meeting feature is supported, false otherwise 
 View on GitHub
View on GitHub