Module Values.ConversationLevelSlotResolutionResultItemSource

The slots used for the slot resolution in the conversation.

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

    The intents used in the slots list for the slot resolution details.

    *)
  2. slotName : TestResultSlotName.t option;
    (*

    The slot name in the slots list for the slot resolution details.

    *)
  3. matchResult : TestResultMatchStatus.t option;
    (*

    The number of matching slots used in the slots listings for the slot resolution evaluation.

    *)
}
Sourceval make : ?intentName:??? -> ?slotName:??? -> ?matchResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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