Sha256: bf59a548bf99ed9d49209e781429071c7bc69e4d7c77dd418405003123e5f730
Contents?: true
Size: 992 Bytes
Versions: 16
Compression:
Stored size: 992 Bytes
Contents
# typed: strong # frozen_string_literal: true module DearInventory module Models class Supplier < DearInventory::Model extend T::Sig fields( SupplierID: { name: :supplier_id, type: :Guid, }, SupplierName: { name: :supplier_name, type: :String, }, SupplierInventoryCode: { name: :supplier_inventory_code, type: :String, }, SupplierProductName: { name: :supplier_product_name, type: :String, }, Cost: { name: :cost, type: :BigDecimal, }, FixedCost: { name: :fixed_cost, type: :BigDecimal, }, Currency: { name: :currency, type: :String, }, DropShip: { name: :drop_ship, type: :Boolean, }, URL: { name: :url, type: :String, } ) end end end
Version data entries
16 entries across 16 versions & 1 rubygems