Module Values.QueryInputDataSource

Input information for the query.

Sourcetype nonrec t = {
  1. queryTextInputData : QueryTextInputData.t option;
    (*

    Input information for the query.

    *)
  2. intentInputData : IntentInputData.t option;
    (*

    Input information for the intent.

    *)
  3. caseSummarizationInputData : CaseSummarizationInputData.t option;
    (*

    Input data for case summarization queries.

    *)
}
Sourceval make : ?queryTextInputData:??? -> ?intentInputData:??? -> ?caseSummarizationInputData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of QueryText.t ]) list ]) 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