class Veeqo::Warehouse

Public Instance Methods

create(name:) click to toggle source
# File lib/veeqo/warehouse.rb, line 5
def create(name:)
  create_resource(name: name)
end
update(warehouse_id, attributes) click to toggle source
# File lib/veeqo/warehouse.rb, line 9
def update(warehouse_id, attributes)
  update_resource(warehouse_id, attributes)
end

Private Instance Methods

end_point() click to toggle source
# File lib/veeqo/warehouse.rb, line 15
def end_point
  "warehouses"
end