Search Results for

    Show / Hide Table of Contents

    Class UnknownMissedEmailProjection

    Unknown missed email projection

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

    Constructors

    View Source

    UnknownMissedEmailProjection()

    Initializes a new instance of the UnknownMissedEmailProjection class.

    Declaration
    [JsonConstructor]
    protected UnknownMissedEmailProjection()
    View Source

    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 Source

    CreatedAt

    Gets or Sets CreatedAt

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

    From

    Gets or Sets From

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

    Id

    Gets or Sets Id

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

    Subject

    Gets or Sets Subject

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

    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 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.