Module Values.StopBotAnalyzerRequestSource

Cancels an ongoing bot analysis execution. Once stopped, the analysis cannot be resumed and no recommendations will be generated.

Sourcetype nonrec t = {
  1. botId : Id.t;
    (*

    The unique identifier of the bot.

    *)
  2. botAnalyzerRequestId : UUID.t;
    (*

    The unique identifier of the analysis request to stop.

    *)
}
Sourceval context_ : string
Sourceval make : botId:Id.t -> botAnalyzerRequestId:UUID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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