module SageoneSdk::Client::TaxRates

Represents the tax rates in Sage One. For example, standard or zero-rated.

Public Instance Methods

tax_rate(id, options = {}) click to toggle source

@return [object] Returns the tax rate with the given id.

# File lib/sageone_sdk/client/tax_rates.rb, line 13
def tax_rate(id, options = {})
  get "tax_rates/#{id}", options
end
tax_rates(options = {}) click to toggle source

@return [object] Returns all tax rates.

# File lib/sageone_sdk/client/tax_rates.rb, line 8
def tax_rates(options = {})
  get "tax_rates", options
end