Sha256: d22d0c9c1c0a8a25990e091a3d3afad225321bd3677e1b4ac492fa65f3e47773
Contents?: true
Size: 643 Bytes
Versions: 16
Compression:
Stored size: 643 Bytes
Contents
# typed: strong # frozen_string_literal: true module DearInventory module Models class BillOfMaterialsService < DearInventory::Model extend T::Sig fields( ComponentProductID: { name: :component_product_id, type: :Guid, }, Name: { name: :name, type: :String, }, Quantity: { name: :quantity, type: :Float, }, ExpenseAccount: { name: :expense_account, type: :String, }, PriceTier: { name: :price_tier, type: :Integer, } ) end end end
Version data entries
16 entries across 16 versions & 1 rubygems