Search Results for

    Show / Hide Table of Contents

    Class CampaignProbeSeriesPointDto

    CampaignProbeSeriesPointDto

    Inheritance
    object
    CampaignProbeSeriesPointDto
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "CampaignProbeSeriesPointDto")]
    public class CampaignProbeSeriesPointDto : IValidatableObject

    Constructors

    View Source

    CampaignProbeSeriesPointDto()

    Initializes a new instance of the CampaignProbeSeriesPointDto class.

    Declaration
    [JsonConstructor]
    protected CampaignProbeSeriesPointDto()
    View Source

    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 Source

    AverageHealthScore

    Gets or Sets AverageHealthScore

    Declaration
    [DataMember(Name = "averageHealthScore", IsRequired = true, EmitDefaultValue = true)]
    public double AverageHealthScore { get; set; }
    Property Value
    Type Description
    double
    View Source

    BucketStart

    Gets or Sets BucketStart

    Declaration
    [DataMember(Name = "bucketStart", IsRequired = true, EmitDefaultValue = true)]
    public DateTime BucketStart { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    FailedCount

    Gets or Sets FailedCount

    Declaration
    [DataMember(Name = "failedCount", IsRequired = true, EmitDefaultValue = true)]
    public int FailedCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    HealthyCount

    Gets or Sets HealthyCount

    Declaration
    [DataMember(Name = "healthyCount", IsRequired = true, EmitDefaultValue = true)]
    public int HealthyCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    HealthyRate

    Gets or Sets HealthyRate

    Declaration
    [DataMember(Name = "healthyRate", IsRequired = true, EmitDefaultValue = true)]
    public double HealthyRate { get; set; }
    Property Value
    Type Description
    double
    View Source

    RunCount

    Gets or Sets RunCount

    Declaration
    [DataMember(Name = "runCount", IsRequired = true, EmitDefaultValue = true)]
    public int RunCount { get; set; }
    Property Value
    Type Description
    int
    View Source

    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 Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.