Class InvitationMonitorStatusBase
Base class to monitor the invitation status
public class InvitationMonitorStatusBase
- Inheritance
-
InvitationMonitorStatusBase
- Derived
- Inherited Members
Properties
AbuseReportCount
Number of respondent that have been reported
[JsonProperty("AbuseReportCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int AbuseReportCount { get; set; }
Property Value
ClickedCount
Number of invitations that have been clicked
[JsonProperty("ClickedCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int ClickedCount { get; set; }
Property Value
ErrorCount
Number of invitations that resulted in an error
[JsonProperty("ErrorCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int ErrorCount { get; set; }
Property Value
NotSentCount
Number of invitations that haven't been sent
[JsonProperty("NotSentCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int NotSentCount { get; set; }
Property Value
OpenedCount
Number of invitations that have been opened
[JsonProperty("OpenedCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int OpenedCount { get; set; }
Property Value
PendingCount
Number of respondents for which an invitation is currently pending
[JsonProperty("PendingCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int PendingCount { get; set; }
Property Value
ScheduledCount
Number of respondents for which an invitation is currently scheduled
[JsonProperty("ScheduledCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int ScheduledCount { get; set; }
Property Value
SentCount
Number of invitations that have already been sent
[JsonProperty("SentCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int SentCount { get; set; }
Property Value
SurveyId
Id of the survey
[JsonProperty("SurveyId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string SurveyId { get; set; }
Property Value
TotalCount
Total number of respondents invited
[JsonProperty("TotalCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public long TotalCount { get; set; }
Property Value
UnknownCount
Number of invitations with unknown status
[JsonProperty("UnknownCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int UnknownCount { get; set; }
Property Value
UnsubscribedCount
Number of respondent that have unsubscribed
[JsonProperty("UnsubscribedCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int UnsubscribedCount { get; set; }