class AFCSalesforce::Base

Public Class Methods

new(options={}) click to toggle source
# File lib/afc_salesforce/base.rb, line 5
def initialize(options={})
  options.each do |attribute_name, attribute_value|
    self.send("#{attribute_name}=".to_sym, attribute_value)
  end
end