Search Results for

    Show / Hide Table of Contents

    Class SendOptInConsentEmailOptions

    SendOptInConsentEmailOptions

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

    Constructors

    View Source

    SendOptInConsentEmailOptions()

    Initializes a new instance of the SendOptInConsentEmailOptions class.

    Declaration
    [JsonConstructor]
    protected SendOptInConsentEmailOptions()
    View Source

    SendOptInConsentEmailOptions(string, string, Guid)

    Initializes a new instance of the SendOptInConsentEmailOptions class.

    Declaration
    public SendOptInConsentEmailOptions(string templateHtml = null, string subject = null, Guid senderInbox = default)
    Parameters
    Type Name Description
    string templateHtml

    templateHtml (required).

    string subject

    subject (required).

    Guid senderInbox

    senderInbox.

    Properties

    View Source

    SenderInbox

    Gets or Sets SenderInbox

    Declaration
    [DataMember(Name = "senderInbox", EmitDefaultValue = false)]
    public Guid SenderInbox { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    Subject

    Gets or Sets Subject

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

    TemplateHtml

    Gets or Sets TemplateHtml

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

    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.