Class SurveyCountsModel
Holds various counts for a survey
public class SurveyCountsModel
- Inheritance
-
SurveyCountsModel
- Inherited Members
Properties
ActiveLiveCount
Number of currently active live interviews
[JsonProperty("ActiveLiveCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? ActiveLiveCount { get; set; }
Property Value
- int?
ActiveTestCount
Number of currently active test interviews
[JsonProperty("ActiveTestCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? ActiveTestCount { get; set; }
Property Value
- int?
DroppedOutCount
Number of currently timed-out non-test interviews
[JsonProperty("DroppedOutCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? DroppedOutCount { get; set; }
Property Value
- int?
QuotaCounts
The detailed counts per quota cell for surveys with quota
[JsonProperty("QuotaCounts", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public QuotaLevel QuotaCounts { get; set; }
Property Value
RejectedCount
The count of interviews successfully completed
[JsonProperty("RejectedCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? RejectedCount { get; set; }
Property Value
- int?
ScreenedOutCount
The count of interviews that ended with *ENDST or #ENDNGB
[JsonProperty("ScreenedOutCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? ScreenedOutCount { get; set; }
Property Value
- int?
SuccessfulCount
The count of interviews successfully completed
[JsonProperty("SuccessfulCount", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? SuccessfulCount { get; set; }
Property Value
- int?
SurveyId
Id of the survey that the counts belong to
[JsonProperty("SurveyId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string SurveyId { get; set; }