Table of Contents

Class ResponseAnswer

Namespace
InSite.Domain.Surveys.Sessions
Assembly
Shift.Sdk.dll

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

question Guid

Properties

Answer

The answer input by the respondent.

public string Answer { get; set; }

Property Value

string

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

List<ResponseOption>

Question

The question answered by the respondent.

public Guid Question { get; set; }

Property Value

Guid

Session

public ResponseSession Session { get; set; }

Property Value

ResponseSession