Values_0.MediaConcurrencySourceContains information about which channels are supported, and how many contacts an agent can have on a channel simultaneously.
type nonrec t = {channel : Channel.t;The channels that agents can handle in the Contact Control Panel (CCP).
*)concurrency : Concurrency.t;The number of contacts an agent can have on a channel simultaneously. Valid Range for VOICE: Minimum value of 1. Maximum value of 1. Valid Range for CHAT: Minimum value of 1. Maximum value of 10. Valid Range for TASK: Minimum value of 1. Maximum value of 10.
*)crossChannelBehavior : CrossChannelBehavior.t option;Defines the cross-channel routing behavior for each channel that is enabled for this Routing Profile. For example, this allows you to offer an agent a different contact from another channel when they are currently working with a contact from a Voice channel.
*)}val make :
?crossChannelBehavior:??? ->
channel:Channel.t ->
concurrency:Concurrency.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of Concurrency.t
| `Structure of (string * [> `Enum of string ]) list ])
list ]