module PaychexAPI::Client::Statuses

Public Instance Methods

company_status(params = {}) click to toggle source
# File lib/paychex_api/client/statuses.rb, line 4
def company_status(params = {})
  get("#{API_PATH}#{STATUS_PATH}/company", params)
end
user_status(params = {}) click to toggle source
# File lib/paychex_api/client/statuses.rb, line 8
def user_status(params = {})
  get("#{API_PATH}#{STATUS_PATH}/user", params)
end
worker_status(params = {}) click to toggle source
# File lib/paychex_api/client/statuses.rb, line 12
def worker_status(params = {})
  get("#{API_PATH}#{STATUS_PATH}/worker", params)
end