module Salesforce::Attributes
Public Instance Methods
assign_attributes!(hash)
click to toggle source
# File lib/salesforce/attributes.rb, line 5 def assign_attributes!(hash) hash.each do |key, value| send("#{key}=", value) if respond_to?("#{key}=") end end