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 / group_line_detail.rb
Size: Mime:
module Quickbooks
  module Model
    class GroupLineDetail < BaseModel
      xml_accessor :group_item_ref, :from => 'CustomerRef', :as => BaseReference
      xml_accessor :quantity, :from => 'Quantity', :as => BigDecimal, :to_xml => to_xml_big_decimal
      xml_accessor :line_items, :from => 'Line', :as => [Line]

      reference_setters :group_item_ref
    end
  end
end