Search Results for

    Show / Hide Table of Contents

    Class EmailRecipientsProjection

    Recipients of original email in thread

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

    Constructors

    View Source

    EmailRecipientsProjection(List<RecipientProjection>, List<RecipientProjection>, List<RecipientProjection>)

    Initializes a new instance of the EmailRecipientsProjection class.

    Declaration
    public EmailRecipientsProjection(List<RecipientProjection> to = null, List<RecipientProjection> cc = null, List<RecipientProjection> bcc = null)
    Parameters
    Type Name Description
    List<RecipientProjection> to

    to.

    List<RecipientProjection> cc

    cc.

    List<RecipientProjection> bcc

    bcc.

    Properties

    View Source

    Bcc

    Gets or Sets Bcc

    Declaration
    [DataMember(Name = "bcc", EmitDefaultValue = false)]
    public List<RecipientProjection> Bcc { get; set; }
    Property Value
    Type Description
    List<RecipientProjection>
    View Source

    Cc

    Gets or Sets Cc

    Declaration
    [DataMember(Name = "cc", EmitDefaultValue = false)]
    public List<RecipientProjection> Cc { get; set; }
    Property Value
    Type Description
    List<RecipientProjection>
    View Source

    To

    Gets or Sets To

    Declaration
    [DataMember(Name = "to", EmitDefaultValue = false)]
    public List<RecipientProjection> To { get; set; }
    Property Value
    Type Description
    List<RecipientProjection>

    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.