Module Values_2.GeneratedAnswerResultSource

The QA result that is made from generated answer.

Sourcetype nonrec t = {
  1. questionText : QAQueryText.t option;
    (*

    The question text.

    *)
  2. answerStatus : GeneratedAnswerStatus.t option;
    (*

    The answer status of the generated answer.

    *)
  3. topicId : Values_1.TopicId.t option;
    (*

    The ID of the topic.

    *)
  4. topicName : Values_1.ResourceName.t option;
    (*

    The name of the topic.

    *)
  5. restatement : QAQueryText.t option;
    (*

    The restatement for the answer.

    *)
  6. questionId : QuestionId.t option;
    (*

    The ID of the question.

    *)
  7. answerId : Values_1.AnswerId.t option;
    (*

    The ID of the answer.

    *)
  8. questionUrl : Values_1.QAUrl.t option;
    (*

    The URL of the question.

    *)
}
Sourceval make : ?questionText:??? -> ?answerStatus:??? -> ?topicId:??? -> ?topicName:??? -> ?restatement:??? -> ?questionId:??? -> ?answerId:??? -> ?questionUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QAQueryText.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