Module Values.BotRecommendationResultsSource

The object representing the URL of the bot definition, the URL of the associated transcript, and a statistical summary of the bot recommendation results.

Sourcetype nonrec t = {
  1. botLocaleExportUrl : PresignedS3Url.t option;
    (*

    The presigned URL link of the recommended bot definition.

    *)
  2. associatedTranscriptsUrl : PresignedS3Url.t option;
    (*

    The presigned url link of the associated transcript.

    *)
  3. statistics : BotRecommendationResultStatistics.t option;
    (*

    The statistical summary of the bot recommendation results.

    *)
}
Sourceval make : ?botLocaleExportUrl:??? -> ?associatedTranscriptsUrl:??? -> ?statistics:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PresignedS3Url.t | `Structure of (string * [> `Structure of (string * [> `Integer of Count.t ]) list ]) 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