Sha256: 899bb9b484fc1dd68001af971146588bad71f14af557958eda58cd88a7a44999

Contents?: true

Size: 377 Bytes

Versions: 8

Compression:

Stored size: 377 Bytes

Contents

module Paychex
  class Client
    module JobTitles
      # Get a list of the job titles for a company
      def job_titles(company_id)
        get("companies/#{company_id}/jobtitles")
      end

      # Get a specific job title's details
      def job_title(company_id, job_title_id)
        get("companies/#{company_id}/jobtitles/#{job_title_id}")
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
paychex-0.3.3 lib/paychex/client/job_titles.rb
paychex-0.3.2 lib/paychex/client/job_titles.rb
paychex-0.3.1 lib/paychex/client/job_titles.rb
paychex-0.3.0 lib/paychex/client/job_titles.rb
paychex-0.2.2 lib/paychex/client/job_titles.rb
paychex-0.2.1 lib/paychex/client/job_titles.rb
paychex-0.2.0 lib/paychex/client/job_titles.rb
paychex-0.1.1 lib/paychex/client/job_titles.rb