Search Results for

    Show / Hide Table of Contents

    Class DomainMonitorSeriesPointDto

    DomainMonitorSeriesPointDto

    Inheritance
    object
    DomainMonitorSeriesPointDto
    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 = "DomainMonitorSeriesPointDto")]
    public class DomainMonitorSeriesPointDto : IValidatableObject

    Constructors

    View Source

    DomainMonitorSeriesPointDto()

    Initializes a new instance of the DomainMonitorSeriesPointDto class.

    Declaration
    [JsonConstructor]
    protected DomainMonitorSeriesPointDto()
    View Source

    DomainMonitorSeriesPointDto(DateTime, int, int, int, int, int, double, double)

    Initializes a new instance of the DomainMonitorSeriesPointDto class.

    Declaration
    public DomainMonitorSeriesPointDto(DateTime bucketStart = default, int runCount = 0, int healthyCount = 0, int degradedCount = 0, int criticalCount = 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 degradedCount

    degradedCount (required).

    int criticalCount

    criticalCount (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

    CriticalCount

    Gets or Sets CriticalCount

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

    DegradedCount

    Gets or Sets DegradedCount

    Declaration
    [DataMember(Name = "degradedCount", IsRequired = true, EmitDefaultValue = true)]
    public int DegradedCount { get; set; }
    Property Value
    Type Description
    int
    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

    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.