Class CatiInterviewerModel
public class CatiInterviewerModel
- Inheritance
-
CatiInterviewerModel
- Inherited Members
Properties
EmailAddress
Email address of the interviewer
[JsonProperty("EmailAddress", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(50)]
public string EmailAddress { get; set; }
Property Value
FirstName
First name of the interviewer
[JsonProperty("FirstName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(50)]
public string FirstName { get; set; }
Property Value
LastName
Last name of the interviewer
[JsonProperty("LastName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(50)]
public string LastName { get; set; }
Property Value
Password
The password for the interviewer
[JsonProperty("Password", Required = Required.Always)]
[Required]
public string Password { get; set; }
Property Value
TelephoneNumber
Telephone number of the interviewer
[JsonProperty("TelephoneNumber", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(30)]
public string TelephoneNumber { get; set; }
Property Value
UserName
The interviewer's username
This username is used to sign in to the Nfield CAPI client
[JsonProperty("UserName", Required = Required.Always)]
[Required]
[StringLength(50, MinimumLength = 1)]
public string UserName { get; set; }