WXA

public class WXA

A data type to represent the WebEx Assistant

Since

3.3.0
  • This will let you know current state of the Webex Assistant

    Since

    3.3.0

    Declaration

    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.0

    Declaration

    Swift

    public var canControlWXA: Bool
  • This will notify when a transcription object arrives for the call

    Since

    3.3.0

    Declaration

    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.