Show / Hide Table of Contents

Class PermissionEntry

Represents a single permission granted to a delegate account. The entry is read and written by PermissionValueConverter, which resolves the two properties below from the single PermissionValue field rippled sends.

Inheritance
object
PermissionEntry
Namespace: Xrpl.Models.Common
Assembly: Xrpl.dll
Syntax
[JsonConverter(typeof(PermissionValueConverter))]
public class PermissionEntry

Properties

| Edit this page View Source

PermissionValue

The numeric value of the granted permission: transaction type code + 1 for transaction-type permissions, or a granular permission value (65537+). UnknownPermissionValue when the node sent a name this version cannot map - read PermissionValueName in that case.

Declaration
public uint PermissionValue { get; set; }
Property Value
Type Description
uint
| Edit this page View Source

PermissionValueName

The permission name: the token the node sent, or the name resolved from PermissionValue when the node sent a number. Null only when a numeric value has no name in this version.

Declaration
public string PermissionValueName { get; set; }
Property Value
Type Description
string
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX