Class EmailRecipientsProjection
Recipients of original email in thread
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "EmailRecipientsProjection")]
public class EmailRecipientsProjection : IValidatableObject
Constructors
View SourceEmailRecipientsProjection(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 SourceBcc
Gets or Sets Bcc
Declaration
[DataMember(Name = "bcc", EmitDefaultValue = false)]
public List<RecipientProjection> Bcc { get; set; }
Property Value
Type | Description |
---|---|
List<RecipientProjection> |
Cc
Gets or Sets Cc
Declaration
[DataMember(Name = "cc", EmitDefaultValue = false)]
public List<RecipientProjection> Cc { get; set; }
Property Value
Type | Description |
---|---|
List<RecipientProjection> |
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 SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | String presentation of the object |