Module Values.DeleteBotLocaleRequestSource

Removes a locale from a bot. When you delete a locale, all intents, slots, and slot types defined for the locale are also deleted.

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

    The unique identifier of the bot that contains the locale.

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

    The version of the bot that contains the locale.

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

    The identifier of the language and locale that will be deleted. The string must match one of the supported locales. For more information, see Supported languages.

    *)
}
Sourceval context_ : string
Sourceval make : botId:Id.t -> botVersion:DraftBotVersion.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