Show / Hide Table of Contents

Class ModifiedNode

Represents a node that was modified in a transaction.

Inheritance
object
NodeBase
ModifiedNode
Implements
IModifiedNode
Inherited Members
NodeBase.LedgerEntryType
NodeBase.LedgerIndex
Namespace: Xrpl.Models.Transactions
Assembly: Xrpl.dll
Syntax
[JsonConverter(typeof(ModifiedNodeConverter))]
public class ModifiedNode : NodeBase, IModifiedNode

Properties

| Edit this page View Source

FinalFields

Gets or sets the final fields after modification.

Declaration
[JsonPropertyName("FinalFields")]
public BaseLedgerEntry? FinalFields { get; set; }
Property Value
Type Description
BaseLedgerEntry
| Edit this page View Source

PreviousFields

Gets or sets the previous fields before modification.

Declaration
[JsonPropertyName("PreviousFields")]
public BaseLedgerEntry? PreviousFields { get; set; }
Property Value
Type Description
BaseLedgerEntry
| Edit this page View Source

PreviousTxnID

Gets or sets the previous transaction ID.

Declaration
[JsonPropertyName("PreviousTxnID")]
public string PreviousTxnID { get; set; }
Property Value
Type Description
string
| Edit this page View Source

PreviousTxnLgrSeq

Gets or sets the previous transaction ledger sequence.

Declaration
[JsonPropertyName("PreviousTxnLgrSeq")]
public uint? PreviousTxnLgrSeq { get; set; }
Property Value
Type Description
uint?

Methods

| Edit this page View Source

TryGetFinal<T>(out T?)

Declaration
public bool TryGetFinal<T>(out T? value) where T : BaseLedgerEntry
Parameters
Type Name Description
T value
Returns
Type Description
bool
Type Parameters
Name Description
T
| Edit this page View Source

TryGetPrevious<T>(out T?)

Declaration
public bool TryGetPrevious<T>(out T? value) where T : BaseLedgerEntry
Parameters
Type Name Description
T value
Returns
Type Description
bool
Type Parameters
Name Description
T

Implements

IModifiedNode
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX