class Newgistics::Inventory

Public Class Methods

element_selector() click to toggle source
# File lib/newgistics/inventory.rb, line 21
def self.element_selector
  'inventory'
end
where(conditions) click to toggle source
# File lib/newgistics/inventory.rb, line 14
def self.where(conditions)
  Query.build(
    endpoint: '/inventory_details.aspx',
    model_class: self
  ).where(conditions)
end