Module Values.BuiltinIntentMetadataSource

Provides metadata for a built-in intent.

Sourcetype nonrec t = {
  1. signature : BuiltinIntentSignature.t option;
    (*

    A unique identifier for the built-in intent. To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit.

    *)
  2. supportedLocales : LocaleList.t option;
    (*

    A list of identifiers for the locales that the intent supports.

    *)
}
Sourceval make : ?signature:??? -> ?supportedLocales:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `String of BuiltinIntentSignature.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