class Payjunction::ConvenienceFeeDecorator < ApplicationDecorator
  def type_symbol
    '$'
  end

  def amount
    h.number_with_precision(object.amount, precision: 2)
  end
end
