Interface AccountNFTsResponse

Response expected from an AccountNFTsRequest.

Hierarchy

Properties

api_version?: number
forwarded?: boolean
id: string | number
result: {
    account: string;
    account_nfts: AccountNFToken[];
    ledger_current_index: number;
    limit?: number;
    marker?: unknown;
    validated: boolean;
}

Type declaration

  • account: string

    The account requested.

  • account_nfts: AccountNFToken[]

    A list of NFTs owned by the specified account.

  • ledger_current_index: number

    The ledger index of the current open ledger, which was used when retrieving this information.

  • Optional limit?: number

    The limit that was used to fulfill this request.

  • Optional marker?: unknown

    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.

  • validated: boolean

    If true, this data comes from a validated ledger.

status?: string
type: string
warning?: "load"
warnings?: ResponseWarning[]

Generated using TypeDoc