Class QnASearchResultList
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.knowledge.qnamaker.models.QnASearchResultList
-
public class QnASearchResultList extends Object
Represents List of Question Answers.
-
-
Constructor Summary
Constructors Constructor Description QnASearchResultList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<QnASearchResult>
answers()
Get the answers value.QnASearchResultList
withAnswers(List<QnASearchResult> answers)
Set the answers value.
-
-
-
Method Detail
-
answers
public List<QnASearchResult> answers()
Get the answers value.- Returns:
- the answers value
-
withAnswers
public QnASearchResultList withAnswers(List<QnASearchResult> answers)
Set the answers value.- Parameters:
answers
- the answers value to set- Returns:
- the QnASearchResultList object itself.
-
-