Class QuotaFrameModel
This model is used to query survey quota frame.
public class QuotaFrameModel
- Inheritance
-
QuotaFrameModel
- Inherited Members
Properties
Id
The unique identifier for a quota frame version
[JsonProperty("Id", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Id { get; set; }
Property Value
Successful
Successful count
[JsonProperty("Successful", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public int Successful { get; set; }
Property Value
Target
Quota target
[JsonProperty("Target", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public int? Target { get; set; }
Property Value
- int?
Variables
Collection of quota frame variables
[JsonProperty("Variables", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<QuotaFrameVariable> Variables { get; set; }