nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
24 lines (23 loc) • 661 B
TypeScript
export type NFT = {
id?: number;
uid?: string | null;
name?: string | null;
displayname?: string | null;
detaildata?: string | null;
ipfsLink?: string | null;
gatewayLink?: string | null;
state?: string | null;
minted?: boolean;
policyId?: string | null;
assetId?: string | null;
assetname?: string | null;
fingerprint?: string | null;
initialMintTxHash?: string | null;
series?: string | null;
tokenamount?: number;
price?: number | null;
selldate?: string | null;
paymentGatewayLinkForSpecificSale?: string | null;
priceSolana?: number | null;
priceAptos?: number | null;
};