class Veeqo::Supplier

Public Instance Methods

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

Private Instance Methods

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