Module Values.IntentOverrideSource

Override settings to configure the intent state.

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

    The name of the intent. Only required when you're switching intents.

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

    A map of all of the slot value overrides for the intent. The name of the slot maps to the value of the slot. Slots that are not included in the map aren't overridden.

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