Table of Contents

Class InboundInbox

Namespace
Mailtrap.Inbound.Models
Assembly
Mailtrap.Abstractions.dll

Represents an inbound inbox.

public sealed record InboundInbox : IEquatable<InboundInbox>
Inheritance
InboundInbox
Implements

Properties

Address

Gets or sets the inbound email address that delivers to this inbox.

[JsonPropertyName("address")]
public string? Address { get; set; }

Property Value

string

Inbound email address.

DomainId

Gets or sets the sending domain identifier for a custom-domain (catch-all) inbox.
null for a Mailtrap-hosted inbox.

[JsonPropertyName("domain_id")]
public long? DomainId { get; set; }

Property Value

long?

Sending domain identifier, or null for a Mailtrap-hosted inbox.

Id

Gets or sets the inbox identifier.

[JsonPropertyName("id")]
public long Id { get; set; }

Property Value

long

Inbox identifier.

Name

Gets or sets the inbox name.

[JsonPropertyName("name")]
public string? Name { get; set; }

Property Value

string

Inbox name.