Table of Contents

Class SamplingPointQuotaTargetModel

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

The model representing an SamplingPointQuotaTarget.

public class SamplingPointQuotaTargetModel
Inheritance
SamplingPointQuotaTargetModel
Inherited Members

Properties

DroppedOutCount

Number of dropped out interviews

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

Property Value

int

LevelId

The Id of the Quota Level that sits in the Quota JSON structure

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

Property Value

string

RejectedCount

Number of dropped out interviews

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

Property Value

int

SuccessfulCount

Number of successfully completed interviews

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

Property Value

int

Target

Actual target of the level

[JsonProperty("Target", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? Target { get; set; }

Property Value

int?

UnsuccessfulCount

Number of not successfully completed interviews

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

Property Value

int