Class NFTHistory
Response expected from an NFTHistoryRequest.
Inherited Members
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class NFTHistory : BaseMethodResult
Properties
| Edit this page View SourceLedgerIndexMax
The most recent ledger actually searched.
Declaration
[JsonPropertyName("ledger_index_max")]
public uint? LedgerIndexMax { get; set; }
Property Value
| Type | Description |
|---|---|
| uint? |
LedgerIndexMin
The earliest ledger actually searched.
Declaration
[JsonPropertyName("ledger_index_min")]
public uint? LedgerIndexMin { get; set; }
Property Value
| Type | Description |
|---|---|
| uint? |
Limit
The limit that was applied.
Declaration
[JsonPropertyName("limit")]
public uint? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| uint? |
Marker
Present when there is more to read; pass it back to continue where this left off.
Declaration
[JsonPropertyName("marker")]
public object Marker { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
Remarks
Clio sends an object of ledger and seq here, the same marker
account_tx uses. Typed as object for the same reason it is there: the
server defines its shape, and a caller's business with it is to hand it back unread.
NFTokenID
The token whose history this is.
Declaration
[JsonPropertyName("nft_id")]
public string NFTokenID { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Transactions
The transactions that touched this token, newest first unless forward was asked for.
Declaration
[JsonPropertyName("transactions")]
public List<TransactionSummary> Transactions { get; set; }
Property Value
| Type | Description |
|---|---|
| List<TransactionSummary> |
Remarks
The same entries account_tx returns, so the same type reads them - including the
tx versus tx_json envelopes of API v1 and v2, which
TransactionSummary already handles. Match them on the I-interfaces,
as with any transaction read back from a ledger.
Validated
Whether the answer comes from validated ledgers.
Declaration
[JsonPropertyName("validated")]
public bool? Validated { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |