Module Values.InputSessionStateSpecificationSource

Specifications for the current state of the dialog between the user and the bot in the test set.

Sourcetype nonrec t = {
  1. sessionAttributes : StringMap.t option;
    (*

    Session attributes for the session state.

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

    Active contexts for the session state.

    *)
  3. runtimeHints : RuntimeHints.t option;
    (*

    Runtime hints for the session state.

    *)
}
Sourceval make : ?sessionAttributes:??? -> ?activeContexts:??? -> ?runtimeHints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ActiveContextName.t ]) list ] list | `Map of ([> `String of NonEmptyString.t ] * [> `String of String_.t ]) list | `Structure of (string * [> `Map of ([> `String of Name.t ] * Awso.Botodata.value) list ]) 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