Module Values.DeleteSlotRequestSource

Deletes the specified slot from an intent.

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

    The identifier of the slot to delete.

    *)
  2. botId : Id.t;
    (*

    The identifier of the bot associated with the slot to delete.

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

    The version of the bot associated with the slot to delete.

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

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

    *)
  5. intentId : Id.t;
    (*

    The identifier of the intent associated with the slot.

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