Class InboxForwarderEventProjection
Inbox forwarder event
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "InboxForwarderEventProjection")]
public class InboxForwarderEventProjection : IEquatable<InboxForwarderEventProjection>, IValidatableObject
Constructors
View SourceInboxForwarderEventProjection()
Initializes a new instance of the InboxForwarderEventProjection class.
Declaration
[JsonConstructor]
protected InboxForwarderEventProjection()
InboxForwarderEventProjection(DateTime, Guid?, Guid?, Guid?, Guid?, string, Guid?, StatusEnum?)
Initializes a new instance of the InboxForwarderEventProjection class.
Declaration
public InboxForwarderEventProjection(DateTime createdAt = default, Guid? emailId = null, Guid? inboxId = null, Guid? userId = null, Guid? forwarderId = null, string message = null, Guid? id = null, InboxForwarderEventProjection.StatusEnum? status = null)
Parameters
Type | Name | Description |
---|---|---|
DateTime | createdAt | createdAt (required). |
System.Guid? | emailId | emailId. |
System.Guid? | inboxId | inboxId. |
System.Guid? | userId | userId. |
System.Guid? | forwarderId | forwarderId. |
string | message | message. |
System.Guid? | id | id. |
InboxForwarderEventProjection.StatusEnum? | status | status. |
Properties
View SourceCreatedAt
Gets or Sets CreatedAt
Declaration
[DataMember(Name = "createdAt", IsRequired = true, EmitDefaultValue = true)]
public DateTime CreatedAt { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
EmailId
Gets or Sets EmailId
Declaration
[DataMember(Name = "emailId", EmitDefaultValue = true)]
public Guid? EmailId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid? |
ForwarderId
Gets or Sets ForwarderId
Declaration
[DataMember(Name = "forwarderId", EmitDefaultValue = true)]
public Guid? ForwarderId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid? |
Id
Gets or Sets Id
Declaration
[DataMember(Name = "id", EmitDefaultValue = true)]
public Guid? Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid? |
InboxId
Gets or Sets InboxId
Declaration
[DataMember(Name = "inboxId", EmitDefaultValue = true)]
public Guid? InboxId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid? |
Message
Gets or Sets Message
Declaration
[DataMember(Name = "message", EmitDefaultValue = true)]
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
Gets or Sets Status
Declaration
[DataMember(Name = "status", EmitDefaultValue = true)]
public InboxForwarderEventProjection.StatusEnum? Status { get; set; }
Property Value
Type | Description |
---|---|
InboxForwarderEventProjection.StatusEnum? |
UserId
Gets or Sets UserId
Declaration
[DataMember(Name = "userId", EmitDefaultValue = true)]
public Guid? UserId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid? |
Methods
View SourceEquals(InboxForwarderEventProjection)
Returns true if InboxForwarderEventProjection instances are equal
Declaration
public bool Equals(InboxForwarderEventProjection input)
Parameters
Type | Name | Description |
---|---|---|
InboxForwarderEventProjection | input | Instance of InboxForwarderEventProjection 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 |