Class AccountObjects
Response expected from an AccountObjectsRequest.
Inheritance
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class AccountObjects : object
Properties
| Improve this Doc View SourceAccount
Unique Address of the account this request corresponds to.
Declaration
public string Account { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
AccountObjectList
Array of objects owned by this account.
Each object is in its raw ledger format.
Declaration
public List<BaseLedgerEntry> AccountObjectList { get; set; }
Property Value
| Type | Description |
|---|---|
| List<BaseLedgerEntry> |
LedgerCurrentIndex
The ledger index of the current in-progress ledger version, which was used to generate this response.
Declaration
public uint? LedgerCurrentIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.UInt32> |
LedgerHash
The identifying hash of the ledger that was used to generate this response.
Declaration
public string LedgerHash { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
LedgerIndex
The ledger index of the ledger version that was used to generate this response.
Declaration
public uint? LedgerIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.UInt32> |
Limit
The limit that was used in this request, if any.
Declaration
public int? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Marker
Server-defined value indicating the response is paginated.
Pass this to the next call to resume where this call left off.
Omitted when there are no additional pages after this one.
Declaration
public object Marker { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Object |
Validated
If included and set to true, the information in this response comes from a validated ledger version.
Otherwise, the information is subject to change.
Declaration
public bool Validated { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |