Show / Hide Table of Contents

Class AccountNFTsRequest

The account_nfts method retrieves all of the NFTs currently owned by the specified account.

Inheritance
object
BaseRequest
BaseLedgerRequest
AccountNFTsRequest
Inherited Members
BaseLedgerRequest.LedgerHash
BaseLedgerRequest.LedgerIndex
BaseRequest.Id
BaseRequest.Command
BaseRequest.ApiVersion
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class AccountNFTsRequest : BaseLedgerRequest

Constructors

| Edit this page View Source

AccountNFTsRequest(string)

Declaration
public AccountNFTsRequest(string account)
Parameters
Type Name Description
string account

Properties

| Edit this page View Source

Account

The unique identifier of an account, typically the account's address.
The request returns NFTs owned by this account.

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

Limit

Limit the number of NFTokens to retrieve.

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

Marker

Value from a previous paginated response.
Resume retrieving data where that response left off.

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