Search Results for

    Show / Hide Table of Contents

    Class TrackingPixelProjection

    Tracking pixel data

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

    Constructors

    View Source

    TrackingPixelProjection()

    Initializes a new instance of the TrackingPixelProjection class.

    Declaration
    [JsonConstructor]
    protected TrackingPixelProjection()
    View Source

    TrackingPixelProjection(Guid, Guid, Guid, DateTime, string, bool, DateTime, string, Guid)

    Initializes a new instance of the TrackingPixelProjection class.

    Declaration
    public TrackingPixelProjection(Guid userId = default, Guid inboxId = default, Guid sentEmailId = default, DateTime createdAt = default, string recipient = null, bool seen = false, DateTime seenAt = default, string name = null, Guid id = default)
    Parameters
    Type Name Description
    Guid userId

    userId (required).

    Guid inboxId

    inboxId.

    Guid sentEmailId

    sentEmailId.

    DateTime createdAt

    createdAt (required).

    string recipient

    recipient.

    bool seen

    seen (required).

    DateTime seenAt

    seenAt.

    string name

    name.

    Guid id

    id (required).

    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

    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

    InboxId

    Gets or Sets InboxId

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

    Name

    Gets or Sets Name

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

    Recipient

    Gets or Sets Recipient

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

    Seen

    Gets or Sets Seen

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

    SeenAt

    Gets or Sets SeenAt

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

    SentEmailId

    Gets or Sets SentEmailId

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

    UserId

    Gets or Sets UserId

    Declaration
    [DataMember(Name = "userId", IsRequired = true, 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.