Class AccountNFTsRequest
The account_nfts method retrieves all of the NFTs currently owned by the specified account.
Inherited Members
Namespace: Xrpl.Models.Methods
Assembly: Xrpl.dll
Syntax
public class AccountNFTsRequest : BaseLedgerRequest
Constructors
| Edit this page View SourceAccountNFTsRequest(string)
Declaration
public AccountNFTsRequest(string account)
Parameters
| Type | Name | Description |
|---|---|---|
| string | account |
Properties
| Edit this page View SourceAccount
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 |
Limit
Limit the number of NFTokens to retrieve.
Declaration
[JsonPropertyName("limit")]
public int? Limit { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
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 |