Module Values.IntentClassificationTestResultItemSource

Information for an intent that is classified by the test workbench.

Sourcetype nonrec t = {
  1. intentName : Name.t option;
    (*

    The name of the intent.

    *)
  2. multiTurnConversation : Boolean.t option;
    (*

    Indicates whether the conversation involves multiple turns or not.

    *)
  3. resultCounts : IntentClassificationTestResultItemCounts.t option;
    (*

    The result of the intent classification test.

    *)
}
Sourceval make : ?intentName:??? -> ?multiTurnConversation:??? -> ?resultCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of Name.t | `Structure of (string * [> `Integer of Count.t | `Map of ([> `Enum 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