Module Values_0.ChatMetricsSource

Information about how agent, bot, and customer interact in a chat contact.

Sourcetype nonrec t = {
  1. chatContactMetrics : ChatContactMetrics.t option;
    (*

    Information about the overall participant interactions at the contact level.

    *)
  2. agentMetrics : ParticipantMetrics.t option;
    (*

    Information about agent interactions in a contact.

    *)
  3. customerMetrics : ParticipantMetrics.t option;
    (*

    Information about customer interactions in a contact.

    *)
}
Sourceval make : ?chatContactMetrics:??? -> ?agentMetrics:??? -> ?customerMetrics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of Count.t | `Long of DurationMillis.t | `String of ParticipantId.t | `Timestamp of string ]) list ]) 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