Class DomainAccessResult
Result of a permissioned domain access check.
Inheritance
object
DomainAccessResult
Namespace: Xrpl.Sugar
Assembly: Xrpl.dll
Syntax
public class DomainAccessResult
Properties
| Edit this page View SourceHasAccess
True if the account can use the domain (permissioned DEX, vaults, ...).
Declaration
public bool HasAccess { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
InvalidCredentials
Credentials held by the account that match the domain's accepted pairs but are not valid (not accepted or expired). Populated only when HasAccess is false; an empty list then means the account holds no matching credential at all.
Declaration
public List<DomainCredentialStatus> InvalidCredentials { get; set; }
Property Value
| Type | Description |
|---|---|
| List<DomainCredentialStatus> |
LedgerIndex
The validated ledger index the check was performed against.
Declaration
public uint LedgerIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| uint |