Class UnknownMissedEmailProjection
Unknown missed email projection
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "UnknownMissedEmailProjection")]
public class UnknownMissedEmailProjection : IValidatableObject
Constructors
View SourceUnknownMissedEmailProjection()
Initializes a new instance of the UnknownMissedEmailProjection class.
Declaration
[JsonConstructor]
protected UnknownMissedEmailProjection()
UnknownMissedEmailProjection(DateTime, List<string>, string, Guid, string)
Initializes a new instance of the UnknownMissedEmailProjection class.
Declaration
public UnknownMissedEmailProjection(DateTime createdAt = default, List<string> to = null, string subject = null, Guid id = default, string from = null)
Parameters
Type | Name | Description |
---|---|---|
DateTime | createdAt | createdAt (required). |
List<string> | to | to. |
string | subject | subject. |
Guid | id | id (required). |
string | from | from. |
Properties
View SourceCreatedAt
Gets or Sets CreatedAt
Declaration
[DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
From
Gets or Sets From
Declaration
[DataMember(Name = "from", EmitDefaultValue = false)]
public string From { 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 |
Subject
Gets or Sets Subject
Declaration
[DataMember(Name = "subject", EmitDefaultValue = false)]
public string Subject { get; set; }
Property Value
Type | Description |
---|---|
string |
To
Gets or Sets To
Declaration
[DataMember(Name = "to", EmitDefaultValue = false)]
public List<string> To { get; set; }
Property Value
Type | Description |
---|---|
List<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 |