Class: Cufinder::ContactSignal
- Inherits:
-
Object
- Object
- Cufinder::ContactSignal
- Defined in:
- lib/cufinder_ruby/types.rb
Overview
PSA Contact Signal
Instance Attribute Summary collapse
-
#company ⇒ Object
Returns the value of attribute company.
-
#current_job ⇒ Object
Returns the value of attribute current_job.
-
#full_name ⇒ Object
Returns the value of attribute full_name.
-
#location ⇒ Object
Returns the value of attribute location.
-
#signal ⇒ Object
Returns the value of attribute signal.
-
#social ⇒ Object
Returns the value of attribute social.
Instance Method Summary collapse
-
#initialize(data = {}) ⇒ ContactSignal
constructor
A new instance of ContactSignal.
Constructor Details
#initialize(data = {}) ⇒ ContactSignal
Returns a new instance of ContactSignal.
762 763 764 765 766 767 768 769 |
# File 'lib/cufinder_ruby/types.rb', line 762 def initialize(data = {}) @full_name = data["full_name"] @current_job = data["current_job"] @company = data["company"] @location = data["location"] @social = data["social"] @signal = data["signal"] ? Signal.new(data["signal"]) : nil end |
Instance Attribute Details
#company ⇒ Object
Returns the value of attribute company.
760 761 762 |
# File 'lib/cufinder_ruby/types.rb', line 760 def company @company end |
#current_job ⇒ Object
Returns the value of attribute current_job.
760 761 762 |
# File 'lib/cufinder_ruby/types.rb', line 760 def current_job @current_job end |
#full_name ⇒ Object
Returns the value of attribute full_name.
760 761 762 |
# File 'lib/cufinder_ruby/types.rb', line 760 def full_name @full_name end |
#location ⇒ Object
Returns the value of attribute location.
760 761 762 |
# File 'lib/cufinder_ruby/types.rb', line 760 def location @location end |
#signal ⇒ Object
Returns the value of attribute signal.
760 761 762 |
# File 'lib/cufinder_ruby/types.rb', line 760 def signal @signal end |
#social ⇒ Object
Returns the value of attribute social.
760 761 762 |
# File 'lib/cufinder_ruby/types.rb', line 760 def @social end |