Interface AccountNFTsResponse

Response expected from an AccountNFTsRequest.

interface AccountNFTsResponse {
    api_version?: number;
    forwarded?: boolean;
    id: string | number;
    result: {
        account: string;
        account_nfts: AccountNFToken[];
        ledger_current_index: number;
        limit?: number;
        marker?: unknown;
        validated: boolean;
    };
    status?: string;
    type: string;
    warning?: "load";
    warnings?: ResponseWarning[];
}

Hierarchy (View Summary, Expand)

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.

  • Optionallimit?: number

    The limit that was used to fulfill this request.

  • Optionalmarker?: 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[]
MMNEPVFCICPMFPCPTTAAATR