Module Values.DescribeIntentRequestSource

Returns metadata about an intent.

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

    The identifier of the intent to describe.

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

    The identifier of the bot associated with the intent.

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

    The version of the bot associated with the intent.

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

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

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