Module Values.UserTurnIntentOutputSource

Contains information about the intent that is output for the turn by the test execution.

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

    The name of the intent.

    *)
  2. slots : UserTurnSlotOutputMap.t option;
    (*

    The slots associated with the intent.

    *)
}
Sourceval make : ?name:??? -> ?slots:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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