module SageoneSdk::Client::IncomeMethods

Represents the payment methods available when recording a sale. For example, bank receipt.

Public Instance Methods

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

@return [object] Returns the payment method with the given id.

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

@return [object] Returns all payment methods.

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