Sha256: e4605799381029fa1c914606399906cfcca9e59b4d421e653ab038806469d5ba
Contents?: true
Size: 801 Bytes
Versions: 1
Compression:
Stored size: 801 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dear_inventory-0.2.0 | lib/dear_inventory/parameters/sale/index.rb |