Table of Contents

Class SendingDomainPermissions

Namespace
Mailtrap.SendingDomains.Models
Assembly
Mailtrap.Abstractions.dll

Represents sending domain permissions.

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

Properties

CanDestroy

Gets the flag indicating whether user can destroy sending domain.

[JsonPropertyName("can_destroy")]
[JsonPropertyOrder(3)]
public bool? CanDestroy { get; set; }

Property Value

bool?

true if user can destroy sending domain.
false otherwise.

CanRead

Gets the flag indicating whether user can read sending domain.

[JsonPropertyName("can_read")]
[JsonPropertyOrder(1)]
public bool? CanRead { get; set; }

Property Value

bool?

true if user can read sending domain.
false otherwise.

CanUpdate

Gets the flag indicating whether user can update sending domain.

[JsonPropertyName("can_update")]
[JsonPropertyOrder(2)]
public bool? CanUpdate { get; set; }

Property Value

bool?

true if user can update sending domain.
false otherwise.