Search Results for

    Show / Hide Table of Contents

    Class CreateConnectorSmtpConnectionOptions

    CreateConnectorSmtpConnectionOptions

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

    Constructors

    View Source

    CreateConnectorSmtpConnectionOptions()

    Initializes a new instance of the CreateConnectorSmtpConnectionOptions class.

    Declaration
    [JsonConstructor]
    protected CreateConnectorSmtpConnectionOptions()
    View Source

    CreateConnectorSmtpConnectionOptions(bool?, string, int?, bool?, string, string, List<string>, bool?, string, string, int?, bool?, string, List<string>)

    Initializes a new instance of the CreateConnectorSmtpConnectionOptions class.

    Declaration
    public CreateConnectorSmtpConnectionOptions(bool? enabled = null, string smtpHost = null, int? smtpPort = null, bool? smtpSsl = null, string smtpUsername = null, string smtpPassword = null, List<string> smtpMechanisms = null, bool? startTls = null, string localHostName = null, string proxyHost = null, int? proxyPort = null, bool? proxyEnabled = null, string sslTrust = null, List<string> sslProtocols = null)
    Parameters
    Type Name Description
    bool? enabled

    enabled.

    string smtpHost

    smtpHost (required).

    int? smtpPort

    smtpPort.

    bool? smtpSsl

    smtpSsl.

    string smtpUsername

    smtpUsername.

    string smtpPassword

    smtpPassword.

    List<string> smtpMechanisms

    smtpMechanisms.

    bool? startTls

    startTls.

    string localHostName

    localHostName.

    string proxyHost

    proxyHost.

    int? proxyPort

    proxyPort.

    bool? proxyEnabled

    proxyEnabled.

    string sslTrust

    sslTrust.

    List<string> sslProtocols

    sslProtocols.

    Properties

    View Source

    Enabled

    Gets or Sets Enabled

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

    LocalHostName

    Gets or Sets LocalHostName

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

    ProxyEnabled

    Gets or Sets ProxyEnabled

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

    ProxyHost

    Gets or Sets ProxyHost

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

    ProxyPort

    Gets or Sets ProxyPort

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

    SmtpHost

    Gets or Sets SmtpHost

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

    SmtpMechanisms

    Gets or Sets SmtpMechanisms

    Declaration
    [DataMember(Name = "smtpMechanisms", EmitDefaultValue = true)]
    public List<string> SmtpMechanisms { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    SmtpPassword

    Gets or Sets SmtpPassword

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

    SmtpPort

    Gets or Sets SmtpPort

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

    SmtpSsl

    Gets or Sets SmtpSsl

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

    SmtpUsername

    Gets or Sets SmtpUsername

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

    SslProtocols

    Gets or Sets SslProtocols

    Declaration
    [DataMember(Name = "sslProtocols", EmitDefaultValue = true)]
    public List<string> SslProtocols { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    SslTrust

    Gets or Sets SslTrust

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

    StartTls

    Gets or Sets StartTls

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

    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.