Show / Hide Table of Contents

Class NFTHistory

Response expected from an NFTHistoryRequest.

Inheritance
object
BaseMethodResult
NFTHistory
Inherited Members
BaseMethodResult.UnknownFields
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class NFTHistory : BaseMethodResult

Properties

| Edit this page View Source

LedgerIndexMax

The most recent ledger actually searched.

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

LedgerIndexMin

The earliest ledger actually searched.

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

Limit

The limit that was applied.

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

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.

| Edit this page View Source

NFTokenID

The token whose history this is.

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

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.

| Edit this page View Source

Validated

Whether the answer comes from validated ledgers.

Declaration
[JsonPropertyName("validated")]
public bool? Validated { get; set; }
Property Value
Type Description
bool?
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX