Global

Members

controller :LiveController

Type:

(constant) LiveCountryCodes :string

Live Experience Country Codes.
Type:
  • string
Properties:
Name Type Description
CountryCodes string

(constant) LiveEvents :string

Live Experience Events. Such as LiveLoginSuccess or LiveConnected. Accessed via controller.events property.
Type:
  • string
Properties:
Name Type Description
LiveConnecting string The user is connecting to the associate.
LiveCanceled string The user has canceled the call attempt.
LiveConnected string The user is connected with the associate.
LiveStreamError string There was an error during the call.
LiveEnded string The call has ended.
See:
Example
$("body").on(liveApi.controller.events.LiveConnected, () => {
  console.log("Connected!");
});