Interface ListOwnersByContractAddressRequestParams

Request parameters for listOwnersByContractAddress operation in NftOwnersApi.

ListOwnersByContractAddressRequest

interface ListOwnersByContractAddressRequestParams {
    contractAddress: string;
    chainName: string;
    accountAddress?: string[];
    fromUpdatedAt?: string;
    pageCursor?: string;
    pageSize?: number;
}

Properties

contractAddress: string

The address of contract

ListOwnersByContractAddress

chainName: string

The name of chain

ListOwnersByContractAddress

accountAddress?: string[]

List of account addresses to filter by

ListOwnersByContractAddress

fromUpdatedAt?: string

Datetime to use as the oldest updated timestamp

ListOwnersByContractAddress

pageCursor?: string

Encoded page cursor to retrieve previous or next page. Use the value returned in the response.

ListOwnersByContractAddress

pageSize?: number

Maximum number of items to return

ListOwnersByContractAddress