Sha256: 11ca74b38d2497c10137aa3e63ecdd5a59660f1939d3e6e07fd0cdad452c6885
Contents?: true
Size: 751 Bytes
Versions: 16
Compression:
Stored size: 751 Bytes
Contents
# typed: strong # frozen_string_literal: true module DearInventory module Models class ReorderLevel < DearInventory::Model extend T::Sig fields( LocationID: { name: :location_id, type: :Guid, }, LocationName: { name: :location_name, type: :String, }, MinimumBeforeReorder: { name: :minimum_before_reorder, type: :Float, }, ReorderQuantity: { name: :reorder_quantity, type: :Float, }, StockLocator: { name: :stock_locator, type: :String, }, PickZones: { name: :pick_zones, type: :String, } ) end end end
Version data entries
16 entries across 16 versions & 1 rubygems