Search Results for

    Show / Hide Table of Contents

    Class AttachmentEntity

    AttachmentEntity

    Inheritance
    object
    AttachmentEntity
    Implements
    IEquatable<AttachmentEntity>
    System.ComponentModel.DataAnnotations.IValidatableObject
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "AttachmentEntity")]
    public class AttachmentEntity : IEquatable<AttachmentEntity>, IValidatableObject

    Constructors

    View Source

    AttachmentEntity()

    Initializes a new instance of the AttachmentEntity class.

    Declaration
    [JsonConstructor]
    protected AttachmentEntity()
    View Source

    AttachmentEntity(Guid, string, string, Guid, string, long, string, string, Guid, DateTime, DateTime)

    Initializes a new instance of the AttachmentEntity class.

    Declaration
    public AttachmentEntity(Guid id = default, string attachmentId = null, string bucket = null, Guid userId = default, string contentType = null, long contentLength = 0, string contentId = null, string name = null, Guid inboxId = default, DateTime createdAt = default, DateTime updatedAt = default)
    Parameters
    Type Name Description
    System.Guid id

    id.

    string attachmentId

    attachmentId (required).

    string bucket

    bucket.

    System.Guid userId

    userId (required).

    string contentType

    contentType.

    long contentLength

    contentLength.

    string contentId

    contentId.

    string name

    name.

    System.Guid inboxId

    inboxId.

    DateTime createdAt

    createdAt (required).

    DateTime updatedAt

    updatedAt (required).

    Properties

    View Source

    AttachmentId

    Gets or Sets AttachmentId

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

    Bucket

    Gets or Sets Bucket

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

    ContentId

    Gets or Sets ContentId

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

    ContentLength

    Gets or Sets ContentLength

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

    ContentType

    Gets or Sets ContentType

    Declaration
    [DataMember(Name = "contentType", EmitDefaultValue = false)]
    public string ContentType { 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
    System.Guid
    View Source

    InboxId

    Gets or Sets InboxId

    Declaration
    [DataMember(Name = "inboxId", EmitDefaultValue = false)]
    public Guid InboxId { get; set; }
    Property Value
    Type Description
    System.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

    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", IsRequired = true, EmitDefaultValue = true)]
    public Guid UserId { get; set; }
    Property Value
    Type Description
    System.Guid

    Methods

    View Source

    Equals(AttachmentEntity)

    Returns true if AttachmentEntity instances are equal

    Declaration
    public bool Equals(AttachmentEntity input)
    Parameters
    Type Name Description
    AttachmentEntity input

    Instance of AttachmentEntity to be compared

    Returns
    Type Description
    bool

    Boolean

    View Source

    Equals(object)

    Returns true if objects are equal

    Declaration
    public override bool Equals(object input)
    Parameters
    Type Name Description
    object input

    Object to be compared

    Returns
    Type Description
    bool

    Boolean

    Overrides
    Object.Equals(Object)
    View Source

    GetHashCode()

    Gets the hash code

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    Hash code

    Overrides
    Object.GetHashCode()
    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()
    View Source

    Validate(ValidationContext)

    To validate all properties of the instance

    Declaration
    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    Parameters
    Type Name Description
    ValidationContext validationContext

    Validation context

    Returns
    Type Description
    IEnumerable<ValidationResult>

    Validation Result

    Implements

    System.IEquatable<T>
    System.ComponentModel.DataAnnotations.IValidatableObject
    • View Source
    In This Article
    Back to top See MailSlurp website for more information.