Class SurveyMetrics
Represents the metrics for the specified survey
public class SurveyMetrics
- Inheritance
-
SurveyMetrics
- Inherited Members
Properties
Counts
The warn and blocked counts per metric
[JsonProperty("Counts", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<SurveyMetricCounts> Counts { get; set; }
Property Value
Id
The id of the survey
[JsonProperty("Id", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
PublishedCount
The number of interviews for the current published version of the survey
[JsonProperty("PublishedCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int PublishedCount { get; set; }
Property Value
TotalCount
The total number of interviews for this survey
[JsonProperty("TotalCount", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int TotalCount { get; set; }