Module Values.IntentDetectedDataDetailsSource

Details about the detected intent.

Sourcetype nonrec t = {
  1. intent : SensitiveString.t option;
    (*

    The detected intent.

    *)
  2. intentId : Uuid.t option;
    (*

    The identifier of the detected intent.

    *)
  3. relevanceLevel : RelevanceLevel.t option;
    (*

    The relevance level of the detected intent.

    *)
}
Sourceval make : ?intent:??? -> ?intentId:??? -> ?relevanceLevel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SensitiveString.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