Module Values_0.AiAgentInfoSource

Information of the AI agent involved in the contact.

Sourcetype nonrec t = {
  1. aiUseCase : AiUseCase.t option;
    (*

    The use case or scenario for which the AI agent is involved in the contact

    *)
  2. aiAgentVersionId : AiAgentVersionId.t option;
    (*

    The unique identifier that specifies both the AI agent ID and its version number that was involved in the contact

    *)
  3. aiAgentEscalated : Boolean.t option;
    (*

    A boolean flag indicating whether the contact initially handled by this AI agent was escalated to a human agent.

    *)
}
Sourceval make : ?aiUseCase:??? -> ?aiAgentVersionId:??? -> ?aiAgentEscalated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of AiAgentVersionId.t ]) 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