Class CampaignProbeSeriesPointDto
CampaignProbeSeriesPointDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "CampaignProbeSeriesPointDto")]
public class CampaignProbeSeriesPointDto : IValidatableObject
Constructors
View SourceCampaignProbeSeriesPointDto()
Initializes a new instance of the CampaignProbeSeriesPointDto class.
Declaration
[JsonConstructor]
protected CampaignProbeSeriesPointDto()
CampaignProbeSeriesPointDto(DateTime, int, int, int, int, double, double)
Initializes a new instance of the CampaignProbeSeriesPointDto class.
Declaration
public CampaignProbeSeriesPointDto(DateTime bucketStart = default, int runCount = 0, int healthyCount = 0, int warningCount = 0, int failedCount = 0, double healthyRate = 0, double averageHealthScore = 0)
Parameters
| Type | Name | Description |
|---|---|---|
| DateTime | bucketStart | bucketStart (required). |
| int | runCount | runCount (required). |
| int | healthyCount | healthyCount (required). |
| int | warningCount | warningCount (required). |
| int | failedCount | failedCount (required). |
| double | healthyRate | healthyRate (required). |
| double | averageHealthScore | averageHealthScore (required). |
Properties
View SourceAverageHealthScore
Gets or Sets AverageHealthScore
Declaration
[DataMember(Name = "averageHealthScore", IsRequired = true, EmitDefaultValue = true)]
public double AverageHealthScore { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
BucketStart
Gets or Sets BucketStart
Declaration
[DataMember(Name = "bucketStart", IsRequired = true, EmitDefaultValue = true)]
public DateTime BucketStart { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
FailedCount
Gets or Sets FailedCount
Declaration
[DataMember(Name = "failedCount", IsRequired = true, EmitDefaultValue = true)]
public int FailedCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
HealthyCount
Gets or Sets HealthyCount
Declaration
[DataMember(Name = "healthyCount", IsRequired = true, EmitDefaultValue = true)]
public int HealthyCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
HealthyRate
Gets or Sets HealthyRate
Declaration
[DataMember(Name = "healthyRate", IsRequired = true, EmitDefaultValue = true)]
public double HealthyRate { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
RunCount
Gets or Sets RunCount
Declaration
[DataMember(Name = "runCount", IsRequired = true, EmitDefaultValue = true)]
public int RunCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
WarningCount
Gets or Sets WarningCount
Declaration
[DataMember(Name = "warningCount", IsRequired = true, EmitDefaultValue = true)]
public int WarningCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Methods
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |