Sha256: 230e7d5d369144360983be9889cb2d899155555d569dad3a0055c9253f4cf812
Contents?: true
Size: 395 Bytes
Versions: 13
Compression:
Stored size: 395 Bytes
Contents
require 'gecko/record/base' module Gecko module Record class TaxType < Base attribute :name, String attribute :code, String attribute :effective_rate, BigDecimal, readonly: true attribute :status, String, readonly: true has_many :tax_components end class TaxTypeAdapter < BaseAdapter end end end
Version data entries
13 entries across 13 versions & 1 rubygems