Module Values.DialogStateSource

The current state of the conversation with the user.

Sourcetype nonrec t = {
  1. dialogAction : DialogAction.t option;
  2. intent : IntentOverride.t option;
  3. sessionAttributes : StringMap.t option;
    (*

    Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.

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