Class FeedbackRecordDTO
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.knowledge.qnamaker.models.FeedbackRecordDTO
-
public class FeedbackRecordDTO extends Object
Active learning feedback record.
-
-
Constructor Summary
Constructors Constructor Description FeedbackRecordDTO()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegerqnaId()Get the qnaId value.StringuserId()Get the userId value.StringuserQuestion()Get the userQuestion value.FeedbackRecordDTOwithQnaId(Integer qnaId)Set the qnaId value.FeedbackRecordDTOwithUserId(String userId)Set the userId value.FeedbackRecordDTOwithUserQuestion(String userQuestion)Set the userQuestion value.
-
-
-
Method Detail
-
userId
public String userId()
Get the userId value.- Returns:
- the userId value
-
withUserId
public FeedbackRecordDTO withUserId(String userId)
Set the userId value.- Parameters:
userId- the userId value to set- Returns:
- the FeedbackRecordDTO object itself.
-
userQuestion
public String userQuestion()
Get the userQuestion value.- Returns:
- the userQuestion value
-
withUserQuestion
public FeedbackRecordDTO withUserQuestion(String userQuestion)
Set the userQuestion value.- Parameters:
userQuestion- the userQuestion value to set- Returns:
- the FeedbackRecordDTO object itself.
-
qnaId
public Integer qnaId()
Get the qnaId value.- Returns:
- the qnaId value
-
withQnaId
public FeedbackRecordDTO withQnaId(Integer qnaId)
Set the qnaId value.- Parameters:
qnaId- the qnaId value to set- Returns:
- the FeedbackRecordDTO object itself.
-
-