UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

23 lines (22 loc) 685 B
import type { Tokens } from './Tokens'; export type GetPaymentAddressResultClass = { paymentAddress?: string | null; paymentAddressId?: number; expires?: string; readonly adaToSend?: string | null; readonly solToSend?: string | null; readonly aptToSend?: string | null; debug?: string | null; priceInEur?: number; priceInUsd?: number; priceInJpy?: number; priceInBtc?: number; effectivedate?: string; priceInLovelace?: number; additionalPriceInTokens?: Array<Tokens> | null; sendbackToUser?: number; revervationtype?: string | null; currency?: string | null; priceInLamport?: number; priceInOcta?: number; };