Module Values.DescribeBotLocaleRequestSource

Describes the settings that a bot has for a specific locale.

Sourcetype nonrec t = {
  1. botId : Id.t;
    (*

    The identifier of the bot associated with the locale.

    *)
  2. botVersion : BotVersion.t;
    (*

    The version of the bot associated with the locale.

    *)
  3. localeId : LocaleId.t;
    (*

    The unique identifier of the locale to describe. The string must match one of the supported locales. For more information, see Supported languages.

    *)
}
Sourceval context_ : string
Sourceval make : botId:Id.t -> botVersion:BotVersion.t -> localeId:LocaleId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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