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

Version Path
gecko-ruby-0.9.1 lib/gecko/record/tax_type.rb
gecko-ruby-0.9.0 lib/gecko/record/tax_type.rb
gecko-ruby-0.8.0 lib/gecko/record/tax_type.rb
gecko-ruby-0.2.6 lib/gecko/record/tax_type.rb
gecko-ruby-0.7.1 lib/gecko/record/tax_type.rb
gecko-ruby-0.7.0 lib/gecko/record/tax_type.rb
gecko-ruby-0.6.0 lib/gecko/record/tax_type.rb
gecko-ruby-0.5.0 lib/gecko/record/tax_type.rb
gecko-ruby-0.2.5 lib/gecko/record/tax_type.rb
gecko-ruby-0.2.4 lib/gecko/record/tax_type.rb
gecko-ruby-0.2.3 lib/gecko/record/tax_type.rb
gecko-ruby-0.2.2 lib/gecko/record/tax_type.rb
gecko-ruby-0.2.0 lib/gecko/record/tax_type.rb