Class SamplingPointQuotaTargetModel
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
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
RejectedCount
Number of dropped out interviews
[JsonProperty("RejectedCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int RejectedCount { get; set; }
Property Value
SuccessfulCount
Number of successfully completed interviews
[JsonProperty("SuccessfulCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int SuccessfulCount { get; set; }
Property Value
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; }