Search Results for

    Show / Hide Table of Contents

    Class AliasThreadProjection

    A thread is a message thread created for a message received by an alias

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

    Constructors

    View Source

    AliasThreadProjection()

    Initializes a new instance of the AliasThreadProjection class.

    Declaration
    [JsonConstructor]
    protected AliasThreadProjection()
    View Source

    AliasThreadProjection(Guid, Guid, DateTime, DateTime, List<string>, List<string>, List<string>, Guid, string, string, Guid)

    Initializes a new instance of the AliasThreadProjection class.

    Declaration
    public AliasThreadProjection(Guid userId = default, Guid inboxId = default, DateTime updatedAt = default, DateTime createdAt = default, List<string> to = null, List<string> cc = null, List<string> bcc = null, Guid aliasId = default, string subject = null, string name = null, Guid id = default)
    Parameters
    Type Name Description
    Guid userId

    User ID (required).

    Guid inboxId

    Inbox ID (required).

    DateTime updatedAt

    Updated at DateTime (required).

    DateTime createdAt

    Created at DateTime (required).

    List<string> to

    To recipients (required).

    List<string> cc

    CC recipients.

    List<string> bcc

    BCC recipients.

    Guid aliasId

    Alias ID (required).

    string subject

    Thread subject.

    string name

    Name of thread.

    Guid id

    ID of email thread (required).

    Properties

    View Source

    AliasId

    Alias ID

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

    Alias ID

    View Source

    Bcc

    BCC recipients

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

    BCC recipients

    View Source

    Cc

    CC recipients

    Declaration
    [DataMember(Name = "cc", EmitDefaultValue = false)]
    public List<string> Cc { get; set; }
    Property Value
    Type Description
    List<string>

    CC recipients

    View Source

    CreatedAt

    Created at DateTime

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

    Created at DateTime

    View Source

    Id

    ID of email thread

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

    ID of email thread

    View Source

    InboxId

    Inbox ID

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

    Inbox ID

    View Source

    Name

    Name of thread

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

    Name of thread

    View Source

    Subject

    Thread subject

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

    Thread subject

    View Source

    To

    To recipients

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

    To recipients

    View Source

    UpdatedAt

    Updated at DateTime

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

    Updated at DateTime

    View Source

    UserId

    User ID

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

    User ID

    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.