class Freee::Tax

Public Class Methods

list(company_id) click to toggle source
# File lib/freee/tax.rb, line 3
def self.list(company_id)
  Freee.client.get(
    "/api/1/taxes?company_id=#{company_id.to_i}",
    :taxes
  )
end
list_of_code() click to toggle source
# File lib/freee/tax.rb, line 10
def self.list_of_code
  Freee.client.get('/api/1/taxes/codes', :taxes)
end