Class AccountAccessPermissions
- Namespace
- Mailtrap.AccountAccesses.Models
- Assembly
- Mailtrap.Abstractions.dll
Represents access permissions for the account.
public sealed record AccountAccessPermissions : IEquatable<AccountAccessPermissions>
- Inheritance
-
AccountAccessPermissions
- Implements
Properties
CanDestroy
Gets the flag indicating whether specifier can destroy account.
[JsonPropertyName("can_destroy")]
[JsonPropertyOrder(3)]
public bool? CanDestroy { get; set; }
Property Value
CanLeave
Gets the flag indicating whether specifier can leave account.
[JsonPropertyName("can_leave")]
[JsonPropertyOrder(4)]
public bool? CanLeave { get; set; }
Property Value
CanRead
Gets the flag indicating whether specifier can read account.
[JsonPropertyName("can_read")]
[JsonPropertyOrder(1)]
public bool? CanRead { get; set; }
Property Value
CanUpdate
Gets the flag indicating whether specifier can update account.
[JsonPropertyName("can_update")]
[JsonPropertyOrder(2)]
public bool? CanUpdate { get; set; }