Table of Contents

Class InterviewerSamplingPointAssignmentModel

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

Model used for querying interviewer assignments to sampling points

public class InterviewerSamplingPointAssignmentModel
Inheritance
InterviewerSamplingPointAssignmentModel
Inherited Members

Properties

Active

Whether this interviewer is active

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

Property Value

bool

Assigned

Whether this interviewer is assigned or not

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

Property Value

bool

FirstName

First name of the interviewer

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

Property Value

string

InterviewerId

ID of the Interviewer

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

Property Value

string

LastName

Last name of the interviewer

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

Property Value

string

UserName

UserName of the Interviewer

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

Property Value

string