Module Values.IntentLevelSlotResolutionTestResultItemSource

Information about intent-level slot resolution in a test result.

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

    The name of the intent that was recognized.

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

    Indicates whether the conversation involves multiple turns or not.

    *)
  3. slotResolutionResults : SlotResolutionTestResultItems.t option;
    (*

    The results for the slot resolution in the test execution result.

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