Class ResponseAnswer
A survey response answer contains the text input by the respondent and/or the option items selected by the respondent.
public class ResponseAnswer
- Inheritance
-
ResponseAnswer
- Inherited Members
- Extension Methods
Constructors
ResponseAnswer()
public ResponseAnswer()
ResponseAnswer(Guid)
public ResponseAnswer(Guid question)
Parameters
questionGuid
Properties
Answer
The answer input by the respondent.
public string Answer { get; set; }
Property Value
Options
The options available for selection. Note this list is ordered in the sequence displayed to the respondent.
public List<ResponseOption> Options { get; set; }
Property Value
Question
The question answered by the respondent.
public Guid Question { get; set; }
Property Value
Session
public ResponseSession Session { get; set; }