Class: Cb::CbResume::CbCompanyExperience
- Inherits:
-
Object
- Object
- Cb::CbResume::CbCompanyExperience
- Defined in:
- lib/cb/models/implementations/cb_resume.rb
Instance Attribute Summary collapse
-
#company_name ⇒ Object
Returns the value of attribute company_name.
-
#details ⇒ Object
Returns the value of attribute details.
-
#end_date ⇒ Object
Returns the value of attribute end_date.
-
#is_current ⇒ Object
Returns the value of attribute is_current.
-
#job_title ⇒ Object
Returns the value of attribute job_title.
-
#start_date ⇒ Object
Returns the value of attribute start_date.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ CbCompanyExperience
constructor
A new instance of CbCompanyExperience.
Constructor Details
#initialize(args = {}) ⇒ CbCompanyExperience
Returns a new instance of CbCompanyExperience.
182 183 184 185 186 187 188 189 |
# File 'lib/cb/models/implementations/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_name ⇒ Object
Returns the value of attribute company_name.
180 181 182 |
# File 'lib/cb/models/implementations/cb_resume.rb', line 180 def company_name @company_name end |
#details ⇒ Object
Returns the value of attribute details.
180 181 182 |
# File 'lib/cb/models/implementations/cb_resume.rb', line 180 def details @details end |
#end_date ⇒ Object
Returns the value of attribute end_date.
180 181 182 |
# File 'lib/cb/models/implementations/cb_resume.rb', line 180 def end_date @end_date end |
#is_current ⇒ Object
Returns the value of attribute is_current.
180 181 182 |
# File 'lib/cb/models/implementations/cb_resume.rb', line 180 def is_current @is_current end |
#job_title ⇒ Object
Returns the value of attribute job_title.
180 181 182 |
# File 'lib/cb/models/implementations/cb_resume.rb', line 180 def job_title @job_title end |
#start_date ⇒ Object
Returns the value of attribute start_date.
180 181 182 |
# File 'lib/cb/models/implementations/cb_resume.rb', line 180 def start_date @start_date end |