Show / Hide Table of Contents

Class BaseLedgerEntity

Inheritance
object
BaseLedgerEntity
LedgerBinaryEntity
LedgerEntity
Implements
IBaseLedgerEntity
Namespace: Xrpl.Models.Ledger
Assembly: Xrpl.dll
Syntax
public abstract class BaseLedgerEntity : IBaseLedgerEntity

Properties

| Edit this page View Source

Closed

Whether or not this ledger has been closed.

Declaration
[JsonPropertyName("closed")]
public bool? Closed { get; set; }
Property Value
Type Description
bool?
Remarks

rippled's LedgerToJson.cpp fillJson omits this member entirely for a non-binary response when the ledger is open (closed == false) and the request asked for full: true — the only combination where the field is dropped instead of written as true/false.

| Edit this page View Source

UnknownFields

Members the node sent that no declared property here claims. Mirrors UnknownFields for ledger entries and UnknownFields for command results: without it, anything this model does not yet know about is dropped between the node and the caller instead of surviving the round trip.

Declaration
[JsonExtensionData]
public Dictionary<string, JsonElement> UnknownFields { get; set; }
Property Value
Type Description
Dictionary<string, JsonElement>

Implements

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