Newer Version Available
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Represents the result when getting rep phone configuration information.
new AgentConfigResult(param)
| Field | Type | Description |
|---|---|---|
| param | object | The agent (rep) config result. |
| param.phones | Array<string> | Optional. Supported phone types. Phone type value can be “SOFT_PHONE” or “DESK_PHONE”. |
| param.selectedPhone | Phone | Selected phone object, which includes the type and number. |
1new AgentConfigResult({
2 phones: ["SOFT_PHONE", "DESK_PHONE"],
3 selectedPhone: new Phone("DESK_PHONE", “5554443333”)
4})Newer Version Available