Search Results for

    Show / Hide Table of Contents

    Class CreateDeliverabilitySimulationJobOptions

    Create a simulation job for a deliverability test

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

    Constructors

    View Source

    CreateDeliverabilitySimulationJobOptions(Guid?, Guid?, DeliverabilitySimulationEmailOptions, DeliverabilitySimulationSmsOptions, long?, int?, long?)

    Initializes a new instance of the CreateDeliverabilitySimulationJobOptions class.

    Declaration
    public CreateDeliverabilitySimulationJobOptions(Guid? senderInboxId = null, Guid? senderPhoneId = null, DeliverabilitySimulationEmailOptions email = null, DeliverabilitySimulationSmsOptions sms = null, long? delayMs = null, int? batchSize = null, long? sendsPerTarget = null)
    Parameters
    Type Name Description
    Guid? senderInboxId

    Sender inbox ID for INBOX scope tests.

    Guid? senderPhoneId

    Sender phone ID for PHONE scope tests.

    DeliverabilitySimulationEmailOptions email

    email.

    DeliverabilitySimulationSmsOptions sms

    sms.

    long? delayMs

    Delay between individual sends in milliseconds.

    int? batchSize

    Maximum sends processed per scheduler batch.

    long? sendsPerTarget

    Optional fixed sends per target. If omitted this is derived from test expectations..

    Properties

    View Source

    BatchSize

    Maximum sends processed per scheduler batch

    Declaration
    [DataMember(Name = "batchSize", EmitDefaultValue = true)]
    public int? BatchSize { get; set; }
    Property Value
    Type Description
    int?

    Maximum sends processed per scheduler batch

    View Source

    DelayMs

    Delay between individual sends in milliseconds

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

    Delay between individual sends in milliseconds

    View Source

    Email

    Gets or Sets Email

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

    SenderInboxId

    Sender inbox ID for INBOX scope tests

    Declaration
    [DataMember(Name = "senderInboxId", EmitDefaultValue = true)]
    public Guid? SenderInboxId { get; set; }
    Property Value
    Type Description
    Guid?

    Sender inbox ID for INBOX scope tests

    View Source

    SenderPhoneId

    Sender phone ID for PHONE scope tests

    Declaration
    [DataMember(Name = "senderPhoneId", EmitDefaultValue = true)]
    public Guid? SenderPhoneId { get; set; }
    Property Value
    Type Description
    Guid?

    Sender phone ID for PHONE scope tests

    View Source

    SendsPerTarget

    Optional fixed sends per target. If omitted this is derived from test expectations.

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

    Optional fixed sends per target. If omitted this is derived from test expectations.

    View Source

    Sms

    Gets or Sets Sms

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

    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.