module EbanqApi::Common
Common owt block helpers
Public Instance Methods
to_hash()
click to toggle source
Transform object to hash
# File lib/ebanq_api/owt/common.rb, line 9 def to_hash instance_variables.each_with_object({}) do |var, hash| hash[var.to_s.delete('@')] = instance_variable_get(var) end end