module SageoneSdk::Client::ExpenseTypes

Represents types of expense in Sage One. These are the categories a user can make purchases against.

Public Instance Methods

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

@return [object] Returns the expense type with the given id.

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

@return [object] Returns all expense types.

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