Module Values.UserTurnSlotOutput

Contains information about a slot output by the test set execution.

Sourcetype nonrec t = {
  1. value : NonEmptyString.t option;
    (*

    The value output by the slot recognition.

    *)
  2. values : UserTurnSlotOutputList.t option;
    (*

    Values that are output by the slot recognition.

    *)
  3. subSlots : UserTurnSlotOutputMap.t option;
    (*

    A list of items mapping the name of the subslots to information about those subslots.

    *)
}
Sourceval make : ?value:NonEmptyString.t -> ?values:UserTurnSlotOutputList.t -> ?subSlots:UserTurnSlotOutputMap.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t