Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
quickbooks-ruby / lib / quickbooks / model / tax_code.rb
Size: Mime:
module Quickbooks
  module Model
    class TaxCode < BaseModel
      XML_COLLECTION_NODE = "TaxCode"
      XML_NODE = "TaxCode"
      REST_RESOURCE = "taxcode"

      xml_accessor :id, :from => "Id"
      xml_accessor :sync_token, :from => "SyncToken", :as => Integer
      xml_accessor :meta_data, :from => "MetaData", :as => MetaData
      xml_accessor :name, :from => "Name"
      xml_accessor :description, :from => "Description"
      xml_accessor :active?, :from => "Active"
      xml_accessor :taxable?, :from => "Taxable"
      xml_accessor :tax_group?, :from => "TaxGroup"
      xml_accessor :sales_tax_rate_list, :from => "SalesTaxRateList", :as => SalesTaxRateList

    end
  end
end