Class: Snov::GetEmailsBySocialUrl::ProspectData
- Inherits:
-
Object
- Object
- Snov::GetEmailsBySocialUrl::ProspectData
- Includes:
- ActiveModel::Model
- Defined in:
- lib/snov/get_emails_by_social_url.rb
Instance Attribute Summary collapse
-
#country ⇒ Object
Returns the value of attribute country.
-
#current_jobs ⇒ Object
readonly
Returns the value of attribute current_jobs.
-
#emails ⇒ Object
Returns the value of attribute emails.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#id ⇒ Object
Returns the value of attribute id.
-
#industry ⇒ Object
Returns the value of attribute industry.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
-
#last_update_date ⇒ Object
Returns the value of attribute last_update_date.
-
#links ⇒ Object
Returns the value of attribute links.
-
#locality ⇒ Object
Returns the value of attribute locality.
-
#name ⇒ Object
Returns the value of attribute name.
-
#previous_jobs ⇒ Object
readonly
Returns the value of attribute previous_jobs.
-
#skills ⇒ Object
Returns the value of attribute skills.
-
#social ⇒ Object
Returns the value of attribute social.
-
#source ⇒ Object
Returns the value of attribute source.
-
#source_page ⇒ Object
Returns the value of attribute source_page.
Instance Method Summary collapse
Instance Attribute Details
#country ⇒ Object
Returns the value of attribute country.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def country @country end |
#current_jobs ⇒ Object (readonly)
Returns the value of attribute current_jobs.
47 48 49 |
# File 'lib/snov/get_emails_by_social_url.rb', line 47 def current_jobs @current_jobs end |
#emails ⇒ Object
Returns the value of attribute emails.
47 48 49 |
# File 'lib/snov/get_emails_by_social_url.rb', line 47 def emails @emails end |
#first_name ⇒ Object
Returns the value of attribute first_name.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def first_name @first_name end |
#id ⇒ Object
Returns the value of attribute id.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def id @id end |
#industry ⇒ Object
Returns the value of attribute industry.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def industry @industry end |
#last_name ⇒ Object
Returns the value of attribute last_name.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def last_name @last_name end |
#last_update_date ⇒ Object
Returns the value of attribute last_update_date.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def last_update_date @last_update_date end |
#links ⇒ Object
Returns the value of attribute links.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def links @links end |
#locality ⇒ Object
Returns the value of attribute locality.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def locality @locality end |
#name ⇒ Object
Returns the value of attribute name.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def name @name end |
#previous_jobs ⇒ Object (readonly)
Returns the value of attribute previous_jobs.
47 48 49 |
# File 'lib/snov/get_emails_by_social_url.rb', line 47 def previous_jobs @previous_jobs end |
#skills ⇒ Object
Returns the value of attribute skills.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def skills @skills end |
#social ⇒ Object
Returns the value of attribute social.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def @social end |
#source ⇒ Object
Returns the value of attribute source.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def source @source end |
#source_page ⇒ Object
Returns the value of attribute source_page.
48 49 50 |
# File 'lib/snov/get_emails_by_social_url.rb', line 48 def source_page @source_page end |
Instance Method Details
#current_job=(val) ⇒ Object
61 62 63 |
# File 'lib/snov/get_emails_by_social_url.rb', line 61 def current_job=(val) @current_jobs = ProspectJobList.new(jobs: Array.wrap(val).map { |job| ProspectJob.new(job) }) end |
#previous_job=(val) ⇒ Object
57 58 59 |
# File 'lib/snov/get_emails_by_social_url.rb', line 57 def previous_job=(val) @previous_jobs = ProspectJobList.new(jobs: Array.wrap(val).map { |job| ProspectJob.new(job) }) end |