Method: Paypal::Base#initialize
- Defined in:
- lib/paypal/base.rb
#initialize(attributes = {}) ⇒ Base
Returns a new instance of Base.
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/paypal/base.rb', line 5 def initialize(attributes = {}) if attributes.is_a?(Hash) (required_attributes + optional_attributes).each do |key| value = if numeric_attribute?(key) Util.to_numeric(attributes[key]) else attributes[key] end self.send "#{key}=", value end end attr_missing! end |