class Koho::Client::InboundInvoices

Public Instance Methods

create(params) click to toggle source
# File lib/koho.rb, line 74
def create params
  post '/', invoice_inbound: params
end
destroy(id) click to toggle source
# File lib/koho.rb, line 82
def destroy id
  delete "/#{id}"
end
find(id) click to toggle source
# File lib/koho.rb, line 69
def find id
  get "/#{id}"
end
list() click to toggle source
# File lib/koho.rb, line 65
def list
  get '/'
end
update(id, params) click to toggle source
# File lib/koho.rb, line 78
def update id, params
  put "/#{id}", invoice_inbound: params
end