Search Results for

    Show / Hide Table of Contents

    Class MissedEmailDto

    Missed email

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

    Constructors

    View Source

    MissedEmailDto()

    Initializes a new instance of the MissedEmailDto class.

    Declaration
    [JsonConstructor]
    protected MissedEmailDto()
    View Source

    MissedEmailDto(Guid, Guid?, string, string, int, string, string, string, string, bool?, List<string>, List<string>, List<string>, List<Guid>, DateTime, DateTime)

    Initializes a new instance of the MissedEmailDto class.

    Declaration
    public MissedEmailDto(Guid id = default, Guid? userId = null, string subject = null, string bodyExcerpt = null, int attachmentCount = 0, string from = null, string rawUrl = null, string rawKey = null, string rawBucket = null, bool? canRestore = null, List<string> to = null, List<string> cc = null, List<string> bcc = null, List<Guid> inboxIds = null, DateTime createdAt = default, DateTime updatedAt = default)
    Parameters
    Type Name Description
    Guid id

    id (required).

    Guid? userId

    userId.

    string subject

    subject.

    string bodyExcerpt

    bodyExcerpt.

    int attachmentCount

    attachmentCount (required).

    string from

    from.

    string rawUrl

    rawUrl.

    string rawKey

    rawKey.

    string rawBucket

    rawBucket.

    bool? canRestore

    canRestore.

    List<string> to

    to (required).

    List<string> cc

    cc (required).

    List<string> bcc

    bcc (required).

    List<Guid> inboxIds

    inboxIds (required).

    DateTime createdAt

    createdAt (required).

    DateTime updatedAt

    updatedAt (required).

    Properties

    View Source

    AttachmentCount

    Gets or Sets AttachmentCount

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

    Bcc

    Gets or Sets Bcc

    Declaration
    [DataMember(Name = "bcc", IsRequired = true, EmitDefaultValue = true)]
    public List<string> Bcc { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    BodyExcerpt

    Gets or Sets BodyExcerpt

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

    CanRestore

    Gets or Sets CanRestore

    Declaration
    [DataMember(Name = "canRestore", EmitDefaultValue = true)]
    public bool? CanRestore { get; set; }
    Property Value
    Type Description
    bool?
    View Source

    Cc

    Gets or Sets Cc

    Declaration
    [DataMember(Name = "cc", IsRequired = true, EmitDefaultValue = true)]
    public List<string> Cc { get; set; }
    Property Value
    Type Description
    List<string>
    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

    InboxIds

    Gets or Sets InboxIds

    Declaration
    [DataMember(Name = "inboxIds", IsRequired = true, EmitDefaultValue = true)]
    public List<Guid> InboxIds { get; set; }
    Property Value
    Type Description
    List<Guid>
    View Source

    RawBucket

    Gets or Sets RawBucket

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

    RawKey

    Gets or Sets RawKey

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

    RawUrl

    Gets or Sets RawUrl

    Declaration
    [DataMember(Name = "rawUrl", EmitDefaultValue = true)]
    public string RawUrl { get; set; }
    Property Value
    Type Description
    string
    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

    To

    Gets or Sets To

    Declaration
    [DataMember(Name = "to", IsRequired = true, EmitDefaultValue = true)]
    public List<string> To { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    UpdatedAt

    Gets or Sets UpdatedAt

    Declaration
    [DataMember(Name = "updatedAt", IsRequired = true, EmitDefaultValue = true)]
    public DateTime UpdatedAt { get; set; }
    Property Value
    Type Description
    DateTime
    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.