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 / transaction_tax_detail.rb
Size: Mime:
module Quickbooks
  module Model
    class TransactionTaxDetail < BaseModel

      xml_accessor :txn_tax_code_ref, :from => 'TxnTaxCodeRef', :as => BaseReference
      xml_accessor :total_tax, :from => 'TotalTax', :as => BigDecimal, :to_xml => to_xml_big_decimal
      xml_accessor :lines, :from => 'TaxLine', :as => [TaxLine]

      reference_setters :txn_tax_code_ref
    end
  end
end