Class: Paypal::Base

Inherits:
Object
  • Object
show all
Includes:
AttrOptional, AttrRequired, Util
Defined in:
lib/paypal/base.rb

Instance Method Summary collapse

Methods included from Util

#==, formatted_amount, #numeric_attribute?, to_numeric

Constructor Details

#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