Sha256: e2d07150105f3a664f2fdd4b75cd005973e841aa61bb1b00c0b47b840ec2abfc
Contents?: true
Size: 837 Bytes
Versions: 16
Compression:
Stored size: 837 Bytes
Contents
# typed: strong # frozen_string_literal: true module DearInventory module Models class BillOfMaterialsProduct < DearInventory::Model extend T::Sig fields( ComponentProductID: { name: :component_product_id, type: :Guid, }, ProductCode: { name: :product_code, type: :String, }, Name: { name: :name, type: :String, }, Quantity: { name: :quantity, type: :Float, }, WastagePercent: { name: :wastage_percent, type: :Float, }, WastageQuantity: { name: :wastage_quantity, type: :Float, }, CostPercentage: { name: :cost_percentage, type: :Float, } ) end end end
Version data entries
16 entries across 16 versions & 1 rubygems