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
CanRead
Gets the flag indicating whether user can read sending domain.
[JsonPropertyName("can_read")]
[JsonPropertyOrder(1)]
public bool? CanRead { get; set; }
Property Value
CanUpdate
Gets the flag indicating whether user can update sending domain.
[JsonPropertyName("can_update")]
[JsonPropertyOrder(2)]
public bool? CanUpdate { get; set; }