nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
25 lines (24 loc) • 834 B
TypeScript
import type { Tokens } from './Tokens';
export type PricelistClass = {
countNft?: number;
priceInLovelace?: number;
readonly adaToSend?: string | null;
priceInEur?: number;
priceInUsd?: number;
priceInJpy?: number;
priceInBtc?: number;
effectivedate?: string;
additionalPriceInTokens?: Array<Tokens> | null;
paymentGatewayLinkForRandomNftSale?: string | null;
currency?: string | null;
sendBackCentralPaymentInLovelace?: number;
readonly sendBackCentralPaymentInAda?: string | null;
priceInLovelaceCentralPayments?: number;
readonly adaToSendCentralPayments?: string | null;
priceInLamport?: number;
readonly solToSend?: string | null;
validFrom?: string | null;
validTo?: string | null;
priceInOctas?: number;
readonly aptToSend?: string | null;
};