Class ModifiedNode
Represents a node that was modified in a transaction.
Inheritance
object
ModifiedNode
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
|
Edit this page
View Source
PreviousFields
Gets or sets the previous fields before modification.
Declaration
[JsonPropertyName("PreviousFields")]
public BaseLedgerEntry? PreviousFields { get; set; }
Property Value
|
Edit this page
View Source
PreviousTxnID
Gets or sets the previous transaction ID.
Declaration
[JsonPropertyName("PreviousTxnID")]
public string PreviousTxnID { get; set; }
Property Value
|
Edit this page
View Source
PreviousTxnLgrSeq
Gets or sets the previous transaction ledger sequence.
Declaration
[JsonPropertyName("PreviousTxnLgrSeq")]
public uint? PreviousTxnLgrSeq { get; set; }
Property Value
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 Parameters
|
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 Parameters
Implements