Sha256: 6421f2bed93b76d5a15cc04998e4669f0a1ba803c0d8ceae9df9a5158fcc61d6
Contents?: true
Size: 798 Bytes
Versions: 14
Compression:
Stored size: 798 Bytes
Contents
# typed: strict # frozen_string_literal: true module DearInventory class Parameters module Sale class Index < DearInventory::Parameters extend T::Sig fields( id: { property: :ID, type: :String, required: true, }, combine_additional_charges: { property: :CombineAdditionalCharges, type: :Boolean, required: false, }, hide_inventory_movements: { property: :HideInventoryMovements, type: :Boolean, required: false, }, include_transactions: { property: :IncludeTransactions, type: :Boolean, required: false, } ) end end end end
Version data entries
14 entries across 14 versions & 1 rubygems