class IndeedJobsearch::SearchResult
Attributes
company[R]
job_title[R]
location[R]
time_scraped[R]
time_since_posting[R]
url[R]
Public Class Methods
new(job_title:, company:, location:, time_since_posting:, time_scraped:, url:)
click to toggle source
# File lib/indeed_jobsearch/search_result.rb, line 4 def initialize(job_title:, company:, location:, time_since_posting:, time_scraped:, url:) @job_title, @company, @location, @time_since_posting, @time_scraped, @url = job_title, company, location, time_since_posting, time_scraped, url end