AgentConfigResult

Represents the result when getting rep phone configuration information.

Constructor

new AgentConfigResult(param)

Functions Where Used

Objects Referenced

Parameters

Field Details
param
Type
object
Description
The agent (rep) config result.
param.phones
Type
Array<string>
Description
Optional. Supported phone types. Phone type value can be "SOFT_PHONE" or "DESK_PHONE".
param.selectedPhone
Type
Phone
Description
Selected phone object, which includes the type and number.

Example

new AgentConfigResult({
    phones: ["SOFT_PHONE", "DESK_PHONE"],
    selectedPhone: new Phone("DESK_PHONE",5554443333)
})