Module Values_0.AutoAcceptConfigSource

Configuration settings for auto-accept for a specific channel.

Sourcetype nonrec t = {
  1. channel : Channel.t;
    (*

    The channel for this auto-accept configuration. Valid values: VOICE, CHAT, TASK, EMAIL.

    *)
  2. autoAccept : AutoAccept.t;
    (*

    Indicates whether auto-accept is enabled for this channel. When enabled, available agents are automatically connected to contacts from this channel.

    *)
  3. agentFirstCallbackAutoAccept : AgentFirstCallbackAutoAccept.t option;
    (*

    Indicates whether auto-accept is enabled for agent-first callbacks. This setting only applies to the VOICE channel.

    *)
}
Sourceval context_ : string
Sourceval make : ?agentFirstCallbackAutoAccept:??? -> channel:Channel.t -> autoAccept:AutoAccept.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of AutoAccept.t | `Enum of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t