Search Results for

    Show / Hide Table of Contents

    Class DeliverabilityExpectationResultDto

    Expectation evaluation result for a single entity

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

    Constructors

    View Source

    DeliverabilityExpectationResultDto()

    Initializes a new instance of the DeliverabilityExpectationResultDto class.

    Declaration
    [JsonConstructor]
    protected DeliverabilityExpectationResultDto()
    View Source

    DeliverabilityExpectationResultDto(int, string, long, long, bool, string, string, string)

    Initializes a new instance of the DeliverabilityExpectationResultDto class.

    Declaration
    public DeliverabilityExpectationResultDto(int expectationIndex = 0, string expectationName = null, long minCount = 0, long actualCount = 0, bool passed = false, string from = null, string to = null, string subject = null)
    Parameters
    Type Name Description
    int expectationIndex

    expectationIndex (required).

    string expectationName

    expectationName.

    long minCount

    minCount (required).

    long actualCount

    actualCount (required).

    bool passed

    passed (required).

    string from

    from.

    string to

    to.

    string subject

    subject.

    Properties

    View Source

    ActualCount

    Gets or Sets ActualCount

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

    ExpectationIndex

    Gets or Sets ExpectationIndex

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

    ExpectationName

    Gets or Sets ExpectationName

    Declaration
    [DataMember(Name = "expectationName", EmitDefaultValue = true)]
    public string ExpectationName { get; set; }
    Property Value
    Type Description
    string
    View Source

    From

    Gets or Sets From

    Declaration
    [DataMember(Name = "from", EmitDefaultValue = true)]
    public string From { get; set; }
    Property Value
    Type Description
    string
    View Source

    MinCount

    Gets or Sets MinCount

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

    Passed

    Gets or Sets Passed

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

    Subject

    Gets or Sets Subject

    Declaration
    [DataMember(Name = "subject", EmitDefaultValue = true)]
    public string Subject { get; set; }
    Property Value
    Type Description
    string
    View Source

    To

    Gets or Sets To

    Declaration
    [DataMember(Name = "to", EmitDefaultValue = true)]
    public string To { get; set; }
    Property Value
    Type Description
    string

    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.