WXA
public class WXA
A data type to represent the WebEx Assistant
Note
If canControlWXA
is false for a meeting, even though the participant is a host, please verify your organization’s control hub settings and disable the Webex AI Assistant. This will enable the old Webex Assistant to continue using Transcription.
Since
3.3.0
-
This will let you know current state of the Webex Assistant
Since
3.3.0Declaration
Swift
public var isEnabled: Bool
-
This will let you know if the current user can control the state of the Webex Assistant
Since
3.3.0Declaration
Swift
public var canControlWXA: Bool
-
This will notify when a transcription object arrives for the call
Since
3.3.0Declaration
Swift
public var onTranscriptionArrived: ((Transcription) -> Void)? { get set }
-
Control the Webex Assistant
Since
3.3.0
Declaration
Swift
public func enableWXA(isEnabled: Bool, callback: @escaping ((Bool) -> Void))
Parameters
isEnabled
enables / disables the Webex Assistant
completionHandler
A closure to be executed when completed, with true if operation was successful, otherwise false.