Sha256: 17aa004a6fdb8d039211233b5f3f6ae92b6c4d7ae45d9ec3fef4e08e176b4878

Contents?: true

Size: 523 Bytes

Versions: 6

Compression:

Stored size: 523 Bytes

Contents

require 'gecko/record/base'

module Gecko
  module Record
    class TaxType < Base
      attribute :name,              String
      attribute :code,              String
      attribute :xero_online_id,    String,     readonly: true
      attribute :imported_from,     String,     readonly: true
      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

6 entries across 6 versions & 1 rubygems

Version Path
gecko-ruby-0.0.10 lib/gecko/record/tax_type.rb
gecko-ruby-0.0.9 lib/gecko/record/tax_type.rb
gecko-ruby-0.0.8 lib/gecko/record/tax_type.rb
gecko-ruby-0.0.7 lib/gecko/record/tax_type.rb
gecko-ruby-0.0.6 lib/gecko/record/tax_type.rb
gecko-ruby-0.0.5 lib/gecko/record/tax_type.rb