module SageoneSdk::Client::Countries

Represents the countries available to select in Sage One.

Public Instance Methods

countries(options = {}) click to toggle source

@return [object] Returns all countries.

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

@return [object] Returns the country with the given id.

# File lib/sageone_sdk/client/countries.rb, line 13
def country(id, options = {})
  get "countries/#{id}", options
end