/** @return the refundedAmountInUSD */ public String getRefundedAmountInUSD() { return FormatUtils.formatNumber(refundedAmountInUSD, 2, locale); }
/** @return the totalAmountInUSD */ public String getTotalAmountInUSD() { return FormatUtils.formatNumber(totalAmountInUSD, 2, locale); }
/** @return the refundedAmount */ public String getRefundedAmount() { return FormatUtils.formatNumber(refundedAmount, 0, locale); }
/** @return the totalAmount */ public String getTotalAmount() { return FormatUtils.formatNumber(totalAmount, 0, locale); }
/** @return the transactionFeeInUSD */ public String getTransactionFeeInUSD() { return FormatUtils.formatNumber(transactionFeeInUSD, 2, locale); }
/** @return the transactionFee */ public String getTransactionFee() { return FormatUtils.formatNumber(transactionFee, 0, locale); }
/** @return the basePriceInUSD */ public String getBasePriceInUSD() { return FormatUtils.formatNumber(getBasePriceInUSDValue(), 2, locale); }
/** @return the basePrice */ public String getBasePrice() { return FormatUtils.formatNumber(getBasePriceValue(), 0, locale); }