Class SurveyInterviewInteractionsSettingsRequestModel
Base model for the interview interactions settings (for a survey)
It defines which actions are available during the interviews
These settings are only used in the Online channel
public class SurveyInterviewInteractionsSettingsRequestModel
- Inheritance
-
SurveyInterviewInteractionsSettingsRequestModel
- Inherited Members
Properties
BackButtonAvailable
Allow to navigate backwards
[JsonProperty("BackButtonAvailable", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public bool? BackButtonAvailable { get; set; }
Property Value
- bool?
ClearButtonAvailable
Allow to clear all answers from the screen
[JsonProperty("ClearButtonAvailable", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public bool? ClearButtonAvailable { get; set; }
Property Value
- bool?
PauseButtonAvailable
Allow identified users to pause the interview
[JsonProperty("PauseButtonAvailable", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public bool? PauseButtonAvailable { get; set; }
Property Value
- bool?