Module Values.BotRecommendationResultStatisticsSource

A statistical summary of the bot recommendation results.

Sourcetype nonrec t = {
  1. intents : IntentStatistics.t option;
    (*

    Statistical information about about the intents associated with the bot recommendation results.

    *)
  2. slotTypes : SlotTypeStatistics.t option;
    (*

    Statistical information about the slot types associated with the bot recommendation results.

    *)
}
Sourceval make : ?intents:??? -> ?slotTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Integer of Count.t ]) 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