class Postmen::Money
Attributes
amount[R]
currency[R]
Public Class Methods
new(options)
click to toggle source
# File lib/postmen/money.rb, line 8 def initialize(options) @amount = options[:amount] @currency = options[:currency] end