Class: Cufinder::ContactSignal

Inherits:
Object
  • Object
show all
Defined in:
lib/cufinder_ruby/types.rb

Overview

PSA Contact Signal

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#companyObject

Returns the value of attribute company.



760
761
762
# File 'lib/cufinder_ruby/types.rb', line 760

def company
  @company
end

#current_jobObject

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_nameObject

Returns the value of attribute full_name.



760
761
762
# File 'lib/cufinder_ruby/types.rb', line 760

def full_name
  @full_name
end

#locationObject

Returns the value of attribute location.



760
761
762
# File 'lib/cufinder_ruby/types.rb', line 760

def location
  @location
end

#signalObject

Returns the value of attribute signal.



760
761
762
# File 'lib/cufinder_ruby/types.rb', line 760

def signal
  @signal
end

#socialObject

Returns the value of attribute social.



760
761
762
# File 'lib/cufinder_ruby/types.rb', line 760

def social
  @social
end