nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
21 lines (20 loc) • 682 B
TypeScript
import type { AuctionsHistory } from './AuctionsHistory';
import type { AuctionsNft } from './AuctionsNft';
export type GetAuctionStateResultClass = {
auctionname?: string | null;
auctionType?: string | null;
address?: string | null;
minbet?: number;
actualbet?: number;
runsuntil?: string;
selleraddress?: string | null;
highestbidder?: string | null;
created?: string;
state?: string | null;
royaltyfeespercent?: number | null;
royaltyaddress?: string | null;
marketplacefeepercent?: number | null;
auctionsNfts?: Array<AuctionsNft> | null;
auctionshistories?: Array<AuctionsHistory> | null;
uid?: string | null;
};