class TaxCloud::Record

A generic TaxCloud record.

Public Class Methods

new(attrs = {}) click to toggle source

Initialize the record.

Parameters

attrs

Attributes defined for this record.

# File lib/tax_cloud/record.rb, line 8
def initialize(attrs = {})
  attrs.each do |sym, val|
    send "#{sym}=", val
  end
end