Search Results for

    Show / Hide Table of Contents

    Class CampaignProbeRunDueResult

    CampaignProbeRunDueResult

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

    Constructors

    View Source

    CampaignProbeRunDueResult()

    Initializes a new instance of the CampaignProbeRunDueResult class.

    Declaration
    [JsonConstructor]
    protected CampaignProbeRunDueResult()
    View Source

    CampaignProbeRunDueResult(TriggerSourceEnum, int, int, int, int, DateTime)

    Initializes a new instance of the CampaignProbeRunDueResult class.

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

    triggerSource (required).

    int runCount

    runCount (required).

    int dueProbeCount

    dueProbeCount (required).

    int skippedCount

    skippedCount (required).

    int requestedMaxRuns

    requestedMaxRuns (required).

    DateTime executedAt

    executedAt (required).

    Properties

    View Source

    DueProbeCount

    Gets or Sets DueProbeCount

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

    SkippedCount

    Gets or Sets SkippedCount

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

    TriggerSource

    Gets or Sets TriggerSource

    Declaration
    [DataMember(Name = "triggerSource", IsRequired = true, EmitDefaultValue = true)]
    public CampaignProbeRunDueResult.TriggerSourceEnum TriggerSource { get; set; }
    Property Value
    Type Description
    CampaignProbeRunDueResult.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.