Search Results for

    Show / Hide Table of Contents

    Class MissedEmailProjection

    Missed email data

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

    Constructors

    View Source

    MissedEmailProjection()

    Initializes a new instance of the MissedEmailProjection class.

    Declaration
    [JsonConstructor]
    protected MissedEmailProjection()
    View Source

    MissedEmailProjection(Guid?, DateTime, string, Guid, string)

    Initializes a new instance of the MissedEmailProjection class.

    Declaration
    public MissedEmailProjection(Guid? userId = null, DateTime createdAt = default, string subject = null, Guid id = default, string from = null)
    Parameters
    Type Name Description
    Guid? userId

    userId.

    DateTime createdAt

    createdAt (required).

    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 = true)]
    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 = true)]
    public string Subject { get; set; }
    Property Value
    Type Description
    string
    View Source

    UserId

    Gets or Sets UserId

    Declaration
    [DataMember(Name = "userId", EmitDefaultValue = true)]
    public Guid? UserId { get; set; }
    Property Value
    Type Description
    Guid?

    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.