Module Values.UserTurnOutputSpecificationSource

Contains results that are output for the user turn by the test execution.

Sourcetype nonrec t = {
  1. intent : UserTurnIntentOutput.t option;
    (*

    Contains information about the intent.

    *)
  2. activeContexts : ActiveContextList.t option;
    (*

    The contexts that are active in the turn.

    *)
  3. transcript : TestSetUtteranceText.t option;
    (*

    The transcript that is output for the user turn by the test execution.

    *)
}
Sourceval make : ?intent:??? -> ?activeContexts:??? -> ?transcript:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ActiveContextName.t ]) list ] list | `String of TestSetUtteranceText.t | `Structure of (string * Awso.Botodata.value) 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