VertoEvent
enum VertoEvent : String
Verto methods that are used during a call. To understand WebRTC negociation through SDP, please check this website.
-
Triggered when the Verto client has been initialized with
(VertoWebSocket).sendLoginRequest()
.Declaration
Swift
case ClientReady = "verto.clientReady"
-
Triggered Verto is ready to connect the call. The payload contain a
SDP
and thecallID
.Declaration
Swift
case Media = "verto.media"
-
Triggered when the call has been successfully created.
Declaration
Swift
case Invite = "verto.invite"
-
Triggered when the agent receive a call.
Declaration
Swift
case Display = "verto.display"
-
Triggered when the call has been terminated.
Declaration
Swift
case Bye = "verto.bye"