Sha256: 2001a09854099cadc3d0105fa276fd5309cf032e1fb5e8940d72857e7f356bf0
Contents?: true
Size: 419 Bytes
Versions: 12
Compression:
Stored size: 419 Bytes
Contents
require 'gecko/record/base' module Gecko module Record class FulfillmentLineItem < Base belongs_to :fulfillment, writeable_on: :create belongs_to :order_line_item, writeable_on: :create attribute :quantity, BigDecimal attribute :base_price, BigDecimal, readonly: true attribute :position, Integer end class FulfillmentLineItemAdapter < BaseAdapter end end end
Version data entries
12 entries across 12 versions & 1 rubygems