Search Results for

    Show / Hide Table of Contents

    Class DeliverabilityPollStatusResultDto

    Polling response for deliverability test progress

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

    Constructors

    View Source

    DeliverabilityPollStatusResultDto()

    Initializes a new instance of the DeliverabilityPollStatusResultDto class.

    Declaration
    [JsonConstructor]
    protected DeliverabilityPollStatusResultDto()
    View Source

    DeliverabilityPollStatusResultDto(DeliverabilityTestDto, bool, long, DateTime?)

    Initializes a new instance of the DeliverabilityPollStatusResultDto class.

    Declaration
    public DeliverabilityPollStatusResultDto(DeliverabilityTestDto test = null, bool cached = false, long cacheWindowSeconds = 0, DateTime? nextRefreshAt = null)
    Parameters
    Type Name Description
    DeliverabilityTestDto test

    test (required).

    bool cached

    cached (required).

    long cacheWindowSeconds

    cacheWindowSeconds (required).

    DateTime? nextRefreshAt

    nextRefreshAt.

    Properties

    View Source

    CacheWindowSeconds

    Gets or Sets CacheWindowSeconds

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

    Cached

    Gets or Sets Cached

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

    NextRefreshAt

    Gets or Sets NextRefreshAt

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

    Test

    Gets or Sets Test

    Declaration
    [DataMember(Name = "test", IsRequired = true, EmitDefaultValue = true)]
    public DeliverabilityTestDto Test { get; set; }
    Property Value
    Type Description
    DeliverabilityTestDto

    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.