Class SurveyInterviewerModel
Interviewer model assigned to a survey
public class SurveyInterviewerModel
- Inheritance
-
SurveyInterviewerModel
- Inherited Members
Properties
DroppedOutCount
Number of dropped out interviews for this interviewer on this survey
[JsonProperty("DroppedOutCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int DroppedOutCount { get; set; }
Property Value
InterviewerId
InterviewerId
[JsonProperty("InterviewerId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string InterviewerId { get; set; }
Property Value
IsActive
Whether the interviewer has downloaded the survey
[JsonProperty("IsActive", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool IsActive { get; set; }
Property Value
IsAssigned
Whether the interviewer is assigned to the survey
[JsonProperty("IsAssigned", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool IsAssigned { get; set; }
Property Value
RejectedCount
Number of rejected interviews for this interviewer on this survey
[JsonProperty("RejectedCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int RejectedCount { get; set; }
Property Value
SuccessfulCount
Number of successfully completed interviews for this interviewer on this survey
[JsonProperty("SuccessfulCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int SuccessfulCount { get; set; }
Property Value
UnsuccessfulCount
Number of unsuccessfully completed interviews for this interviewer on this survey
[JsonProperty("UnsuccessfulCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int UnsuccessfulCount { get; set; }