Search Results for

    Show / Hide Table of Contents

    Class DomainMonitorRunDueResult

    DomainMonitorRunDueResult

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

    Constructors

    View Source

    DomainMonitorRunDueResult()

    Initializes a new instance of the DomainMonitorRunDueResult class.

    Declaration
    [JsonConstructor]
    protected DomainMonitorRunDueResult()
    View Source

    DomainMonitorRunDueResult(TriggerSourceEnum, int, int, DateTime)

    Initializes a new instance of the DomainMonitorRunDueResult class.

    Declaration
    public DomainMonitorRunDueResult(DomainMonitorRunDueResult.TriggerSourceEnum triggerSource = (DomainMonitorRunDueResult.TriggerSourceEnum)0, int runCount = 0, int requestedMaxRuns = 0, DateTime executedAt = default)
    Parameters
    Type Name Description
    DomainMonitorRunDueResult.TriggerSourceEnum triggerSource

    triggerSource (required).

    int runCount

    runCount (required).

    int requestedMaxRuns

    requestedMaxRuns (required).

    DateTime executedAt

    executedAt (required).

    Properties

    View Source

    ExecutedAt

    Gets or Sets ExecutedAt

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

    RequestedMaxRuns

    Gets or Sets RequestedMaxRuns

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

    TriggerSource

    Gets or Sets TriggerSource

    Declaration
    [DataMember(Name = "triggerSource", IsRequired = true, EmitDefaultValue = true)]
    public DomainMonitorRunDueResult.TriggerSourceEnum TriggerSource { get; set; }
    Property Value
    Type Description
    DomainMonitorRunDueResult.TriggerSourceEnum

    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.