NoahGetPayoutQuoteData

data class NoahGetPayoutQuoteData(val payoutId: String, val totalFee: String, val cryptoAmountEstimate: String, val cryptoAuthorizedAmount: String, val formSessionId: String, val cryptoCurrency: String? = null, val fiatCurrency: String? = null, val fiatAmount: String? = null, val rate: String? = null, val breakdown: List<NoahTransactionBreakdownItem>? = null, val quote: NoahSellQuote? = null, val nextStep: NoahFormNextStep? = null)

Successful payout quote payload. May embed a nextStep when the multi-step form flow has more screens to collect from the user before NoahInitiatePayoutRequest can be sent.

Constructors

Link copied to clipboard
constructor(payoutId: String, totalFee: String, cryptoAmountEstimate: String, cryptoAuthorizedAmount: String, formSessionId: String, cryptoCurrency: String? = null, fiatCurrency: String? = null, fiatAmount: String? = null, rate: String? = null, breakdown: List<NoahTransactionBreakdownItem>? = null, quote: NoahSellQuote? = null, nextStep: NoahFormNextStep? = null)

Properties

Link copied to clipboard

Fee breakdown line items, when returned by Noah.

Link copied to clipboard
Link copied to clipboard

The crypto amount the client is authorized to send for this quote.

Link copied to clipboard
val cryptoCurrency: String? = null

Disclosure: the crypto currency the quote was priced in, when returned by Noah.

Link copied to clipboard
val fiatAmount: String? = null

Disclosure: the resolved fiat amount for the quote, when returned by Noah.

Link copied to clipboard
val fiatCurrency: String? = null

Disclosure: the fiat currency the quote was priced in, when returned by Noah.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val quote: NoahSellQuote? = null

Signed quote details, present for quoted (rate-locked) payouts.

Link copied to clipboard
val rate: String? = null

Exchange rate applied to the quote, when returned by Noah.

Link copied to clipboard