Class FakeEmailDto
FakeEmailDto
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "FakeEmailDto")]
public class FakeEmailDto : IValidatableObject
Constructors
View SourceFakeEmailDto()
Initializes a new instance of the FakeEmailDto class.
Declaration
[JsonConstructor]
protected FakeEmailDto()
FakeEmailDto(Guid, string, Sender, EmailRecipients, List<string>, string, string, string, bool, DateTime, string, string)
Initializes a new instance of the FakeEmailDto class.
Declaration
public FakeEmailDto(Guid id = default, string emailAddress = null, Sender sender = null, EmailRecipients recipients = null, List<string> attachmentNames = null, string subject = null, string preview = null, string body = null, bool seen = false, DateTime createdAt = default, string contentType = null, string bodyUrl = null)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | id (required). |
string | emailAddress | emailAddress (required). |
Sender | sender | sender. |
EmailRecipients | recipients | recipients. |
List<string> | attachmentNames | attachmentNames (required). |
string | subject | subject. |
string | preview | preview. |
string | body | body (required). |
bool | seen | seen (required). |
DateTime | createdAt | createdAt (required). |
string | contentType | contentType (required). |
string | bodyUrl | bodyUrl (required). |
Properties
View SourceAttachmentNames
Gets or Sets AttachmentNames
Declaration
[DataMember(Name = "attachmentNames", IsRequired = true, EmitDefaultValue = true)]
public List<string> AttachmentNames { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Body
Gets or Sets Body
Declaration
[DataMember(Name = "body", IsRequired = true, EmitDefaultValue = true)]
public string Body { get; set; }
Property Value
Type | Description |
---|---|
string |
BodyUrl
Gets or Sets BodyUrl
Declaration
[DataMember(Name = "bodyUrl", IsRequired = true, EmitDefaultValue = true)]
public string BodyUrl { get; set; }
Property Value
Type | Description |
---|---|
string |
ContentType
Gets or Sets ContentType
Declaration
[DataMember(Name = "contentType", IsRequired = true, EmitDefaultValue = true)]
public string ContentType { get; set; }
Property Value
Type | Description |
---|---|
string |
CreatedAt
Gets or Sets CreatedAt
Declaration
[DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
EmailAddress
Gets or Sets EmailAddress
Declaration
[DataMember(Name = "emailAddress", IsRequired = true, EmitDefaultValue = true)]
public string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", IsRequired = true, EmitDefaultValue = true)]
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid |
Preview
Gets or Sets Preview
Declaration
[DataMember(Name = "preview", EmitDefaultValue = false)]
public string Preview { get; set; }
Property Value
Type | Description |
---|---|
string |
Recipients
Gets or Sets Recipients
Declaration
[DataMember(Name = "recipients", EmitDefaultValue = true)]
public EmailRecipients Recipients { get; set; }
Property Value
Type | Description |
---|---|
EmailRecipients |
Seen
Gets or Sets Seen
Declaration
[DataMember(Name = "seen", IsRequired = true, EmitDefaultValue = true)]
public bool Seen { get; set; }
Property Value
Type | Description |
---|---|
bool |
Sender
Gets or Sets Sender
Declaration
[DataMember(Name = "sender", EmitDefaultValue = true)]
public Sender Sender { get; set; }
Property Value
Type | Description |
---|---|
Sender |
Subject
Gets or Sets Subject
Declaration
[DataMember(Name = "subject", EmitDefaultValue = false)]
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
string |
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 |