Search Results for

    Show / Hide Table of Contents

    Class CreateCampaignProbeOptions

    Create options for a campaign probe

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

    Constructors

    View Source

    CreateCampaignProbeOptions(string, bool?, long?, bool?)

    Initializes a new instance of the CreateCampaignProbeOptions class.

    Declaration
    public CreateCampaignProbeOptions(string name = null, bool? enabled = null, long? intervalSeconds = null, bool? schedulingEnabled = null)
    Parameters
    Type Name Description
    string name

    Optional display name.

    bool? enabled

    Whether SES monitor ingestion is enabled for this probe.

    long? intervalSeconds

    Scheduled run interval in seconds.

    bool? schedulingEnabled

    Whether scheduled campaign probe runs are enabled. Direct run-now remains available..

    Properties

    View Source

    Enabled

    Whether SES monitor ingestion is enabled for this probe

    Declaration
    [DataMember(Name = "enabled", EmitDefaultValue = true)]
    public bool? Enabled { get; set; }
    Property Value
    Type Description
    bool?

    Whether SES monitor ingestion is enabled for this probe

    View Source

    IntervalSeconds

    Scheduled run interval in seconds

    Declaration
    [DataMember(Name = "intervalSeconds", EmitDefaultValue = true)]
    public long? IntervalSeconds { get; set; }
    Property Value
    Type Description
    long?

    Scheduled run interval in seconds

    View Source

    Name

    Optional display name

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

    Optional display name

    View Source

    SchedulingEnabled

    Whether scheduled campaign probe runs are enabled. Direct run-now remains available.

    Declaration
    [DataMember(Name = "schedulingEnabled", EmitDefaultValue = true)]
    public bool? SchedulingEnabled { get; set; }
    Property Value
    Type Description
    bool?

    Whether scheduled campaign probe runs are enabled. Direct run-now remains available.

    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.