Module Values.IssueLocationSource

Specifies the location of an identified issue within the bot configuration.

Sourcetype nonrec t = {
  1. botLocale : LocaleId.t option;
    (*

    The locale identifier where the issue was found.

    *)
  2. intentId : Id.t option;
    (*

    The intent identifier where the issue was found, if applicable.

    *)
  3. slotId : Id.t option;
    (*

    The slot identifier where the issue was found, if applicable.

    *)
}
Sourceval make : ?botLocale:??? -> ?intentId:??? -> ?slotId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LocaleId.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