-
- All Implemented Interfaces:
-
android.os.Parcelable,java.io.Serializable
public interface Survey implements Serializable, Parcelable
Survey is used to get feedback from the visitor for performance measurement and improvements.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enumSurvey.SurveyTypeDefines the possible types of the survey.
public interfaceSurvey.QuestionSurvey question details.
public interfaceSurvey.AnswerDescribes the answer to a Question.
-
Method Summary
Modifier and Type Method Description abstract StringgetId()abstract StringgetName()abstract StringgetSiteId()abstract StringgetEngagementId()abstract StringgetTitle()abstract StringgetDescription()abstract Survey.SurveyTypegetType()abstract List<Survey.Question>getQuestions()-
-
Method Detail
-
getEngagementId
@NonNull() abstract String getEngagementId()
-
getDescription
@NonNull() abstract String getDescription()
-
getType
@NonNull() abstract Survey.SurveyType getType()
-
getQuestions
@NonNull() abstract List<Survey.Question> getQuestions()
-
-
-
-