class Veeqo::DeliveryMethod

Public Instance Methods

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

Private Instance Methods

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