Class: Cb::CbResume::CbCompanyExperience

Inherits:
Object
  • Object
show all
Defined in:
lib/cb/models/cb_resume.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ CbCompanyExperience

Returns a new instance of CbCompanyExperience.



182
183
184
185
186
187
188
189
# File 'lib/cb/models/cb_resume.rb', line 182

def initialize(args = {})
  @job_title        = args['JobTitle'] || ''
  @company_name     = args['CompanyName'] || ''
  @start_date       = args['StartDate'] || ''
  @end_date         = args['EndDate'] || ''
  @is_current       = args['IsCurrent'] || ''
  @details          = args['Details'] || ''
end

Instance Attribute Details

#company_nameObject

Returns the value of attribute company_name.



180
181
182
# File 'lib/cb/models/cb_resume.rb', line 180

def company_name
  @company_name
end

#detailsObject

Returns the value of attribute details.



180
181
182
# File 'lib/cb/models/cb_resume.rb', line 180

def details
  @details
end

#end_dateObject

Returns the value of attribute end_date.



180
181
182
# File 'lib/cb/models/cb_resume.rb', line 180

def end_date
  @end_date
end

#is_currentObject

Returns the value of attribute is_current.



180
181
182
# File 'lib/cb/models/cb_resume.rb', line 180

def is_current
  @is_current
end

#job_titleObject

Returns the value of attribute job_title.



180
181
182
# File 'lib/cb/models/cb_resume.rb', line 180

def job_title
  @job_title
end

#start_dateObject

Returns the value of attribute start_date.



180
181
182
# File 'lib/cb/models/cb_resume.rb', line 180

def start_date
  @start_date
end