Class: Cb::CbResume::CbEducation
- Inherits:
-
Object
- Object
- Cb::CbResume::CbEducation
- Defined in:
- lib/cb/models/cb_resume.rb
Instance Attribute Summary collapse
-
#degree_code ⇒ Object
Returns the value of attribute degree_code.
-
#degree_name ⇒ Object
Returns the value of attribute degree_name.
-
#gpa ⇒ Object
Returns the value of attribute gpa.
-
#graduation_date ⇒ Object
Returns the value of attribute graduation_date.
-
#major ⇒ Object
Returns the value of attribute major.
-
#school_name ⇒ Object
Returns the value of attribute school_name.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ CbEducation
constructor
A new instance of CbEducation.
Constructor Details
#initialize(args = {}) ⇒ CbEducation
195 196 197 198 199 200 201 202 |
# File 'lib/cb/models/cb_resume.rb', line 195 def initialize(args = {}) @school_name = args['SchoolName'] || '' @major = args['Major'] || '' @degree_name = args['DegreeName'] || '' @degree_code = args['DegreeCode'] || '' @graduation_date = args['GraduationDate'] || '' @gpa = args['GPA'] || '' end |
Instance Attribute Details
#degree_code ⇒ Object
Returns the value of attribute degree_code.
193 194 195 |
# File 'lib/cb/models/cb_resume.rb', line 193 def degree_code @degree_code end |
#degree_name ⇒ Object
Returns the value of attribute degree_name.
193 194 195 |
# File 'lib/cb/models/cb_resume.rb', line 193 def degree_name @degree_name end |
#gpa ⇒ Object
Returns the value of attribute gpa.
193 194 195 |
# File 'lib/cb/models/cb_resume.rb', line 193 def gpa @gpa end |
#graduation_date ⇒ Object
Returns the value of attribute graduation_date.
193 194 195 |
# File 'lib/cb/models/cb_resume.rb', line 193 def graduation_date @graduation_date end |
#major ⇒ Object
Returns the value of attribute major.
193 194 195 |
# File 'lib/cb/models/cb_resume.rb', line 193 def major @major end |
#school_name ⇒ Object
Returns the value of attribute school_name.
193 194 195 |
# File 'lib/cb/models/cb_resume.rb', line 193 def school_name @school_name end |