Package tbdex.sdk.messages
Class QuoteDetails
-
- All Implemented Interfaces:
public final class QuoteDetailsRepresents the details of a quote in the tbDEX protocol, including the currency, subtotal, total, and optional fee.
-
-
Constructor Summary
Constructors Constructor Description QuoteDetails(String currencyCode, String subtotal, String total, String fee)
-
Method Summary
Modifier and Type Method Description final StringgetCurrencyCode()The currency code (ISO 4217 format) of the quote. final StringgetSubtotal()The subtotal amount of the transaction, excluding fees. final StringgetTotal()The total amount of the transaction, including fees. final StringgetFee()Optional fee associated with the transaction. -
-
Method Detail
-
getCurrencyCode
final String getCurrencyCode()
The currency code (ISO 4217 format) of the quote.
-
getSubtotal
final String getSubtotal()
The subtotal amount of the transaction, excluding fees.
-
-
-
-