Repository URL to install this package:
|
Version:
0.1.8 ▾
|
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