Search Results for

    Show / Hide Table of Contents

    Class BounceProjection

    Bounced email event

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

    Constructors

    View Source

    BounceProjection()

    Initializes a new instance of the BounceProjection class.

    Declaration
    [JsonConstructor]
    protected BounceProjection()
    View Source

    BounceProjection(string, DateTime, string, string, string, Guid)

    Initializes a new instance of the BounceProjection class.

    Declaration
    public BounceProjection(string sender = null, DateTime createdAt = default, string bounceType = null, string bounceMta = null, string subject = null, Guid id = default)
    Parameters
    Type Name Description
    string sender

    sender (required).

    DateTime createdAt

    createdAt (required).

    string bounceType

    bounceType.

    string bounceMta

    bounceMta.

    string subject

    subject.

    Guid id

    id.

    Properties

    View Source

    BounceMta

    Gets or Sets BounceMta

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

    BounceType

    Gets or Sets BounceType

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

    Id

    Gets or Sets Id

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

    Sender

    Gets or Sets Sender

    Declaration
    [DataMember(Name = "sender", IsRequired = true, EmitDefaultValue = true)]
    public string Sender { 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

    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.