Table of Contents

Class SurveyInterviewerModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

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

int

InterviewerId

InterviewerId

[JsonProperty("InterviewerId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string InterviewerId { get; set; }

Property Value

string

IsActive

Whether the interviewer has downloaded the survey

[JsonProperty("IsActive", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool IsActive { get; set; }

Property Value

bool

IsAssigned

Whether the interviewer is assigned to the survey

[JsonProperty("IsAssigned", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public bool IsAssigned { get; set; }

Property Value

bool

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

int

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

int

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; }

Property Value

int