Interface INFTsApiListOwnedCollectionsRequest

interface INFTsApiListOwnedCollectionsRequest {
    allPages?: boolean;
    order?: ListOwnedCollectionsOrderEnum;
    pageCursor?: string;
    pageSize?: number;
    search?: string;
    sort?: "name"[];
    status?: ListOwnedCollectionsStatusEnum;
}

Hierarchy

  • Omit<NFTsApiListOwnedCollectionsRequest, "ncwId" | "walletType">
    • INFTsApiListOwnedCollectionsRequest

Properties

allPages?: boolean
order?: ListOwnedCollectionsOrderEnum

Order direction, it can be `ASC` for ascending or `DESC` for descending

NFTsApiListOwnedCollections

pageCursor?: string

Page cursor to fetch

NFTsApiListOwnedCollections

pageSize?: number

Items per page (max 100)

NFTsApiListOwnedCollections

search?: string

Search owned collections. Possible criteria for search: collection name, collection contract address.

NFTsApiListOwnedCollections

sort?: "name"[]

Sort by param, it can be one param or a list of params separated by comma

NFTsApiListOwnedCollections

status?: ListOwnedCollectionsStatusEnum

Token ownership status

NFTsApiListOwnedCollections