class Recruitee::Candidate

Public Instance Methods

evaluations()
Alias for: interview_results
interview_events() click to toggle source
# File lib/recruitee/resources/candidate.rb, line 5
def interview_events
  @_interview_events ||= client.interview_events.list(candidate_id: id)
end
interview_results() click to toggle source
# File lib/recruitee/resources/candidate.rb, line 9
def interview_results
  @_interview_results ||= client.interview_results.list(candidate_id: id)
end
Also aliased as: evaluations
offers() click to toggle source
# File lib/recruitee/resources/candidate.rb, line 14
def offers
  @_offers ||= placements.map(&:offer)
end
placements() click to toggle source
# File lib/recruitee/resources/candidate.rb, line 18
def placements
  @_placements ||= @properties[:placements].map do |attrs|
    Placement.new(client, attrs)
  end
end