Class AttachmentEntity
AttachmentEntity
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "AttachmentEntity")]
public class AttachmentEntity : IEquatable<AttachmentEntity>, IValidatableObject
Constructors
View SourceAttachmentEntity()
Initializes a new instance of the AttachmentEntity class.
Declaration
[JsonConstructor]
protected AttachmentEntity()
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 SourceAttachmentId
Gets or Sets AttachmentId
Declaration
[DataMember(Name = "attachmentId", IsRequired = true, EmitDefaultValue = true)]
public string AttachmentId { get; set; }
Property Value
Type | Description |
---|---|
string |
Bucket
Gets or Sets Bucket
Declaration
[DataMember(Name = "bucket", EmitDefaultValue = false)]
public string Bucket { get; set; }
Property Value
Type | Description |
---|---|
string |
ContentId
Gets or Sets ContentId
Declaration
[DataMember(Name = "contentId", EmitDefaultValue = false)]
public string ContentId { get; set; }
Property Value
Type | Description |
---|---|
string |
ContentLength
Gets or Sets ContentLength
Declaration
[DataMember(Name = "contentLength", EmitDefaultValue = false)]
public long ContentLength { get; set; }
Property Value
Type | Description |
---|---|
long |
ContentType
Gets or Sets ContentType
Declaration
[DataMember(Name = "contentType", EmitDefaultValue = false)]
public string ContentType { get; set; }
Property Value
Type | Description |
---|---|
string |
CreatedAt
Gets or Sets CreatedAt
Declaration
[DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", EmitDefaultValue = false)]
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
InboxId
Gets or Sets InboxId
Declaration
[DataMember(Name = "inboxId", EmitDefaultValue = false)]
public Guid InboxId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Name
Gets or Sets Name
Declaration
[DataMember(Name = "name", EmitDefaultValue = false)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
UpdatedAt
Gets or Sets UpdatedAt
Declaration
[DataMember(Name = "updatedAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime UpdatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
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 SourceEquals(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 |
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
View SourceGetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | Hash code |
Overrides
View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | String presentation of the object |
Overrides
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 |