class Cb::Models::Resumes::Education

Attributes

degree[RW]
graduation_date[RW]
major_or_program[RW]
school_name[RW]

Public Instance Methods

required_fields() click to toggle source
# File lib/cb/models/implementations/resumes/education.rb, line 24
def required_fields
  %w(schoolName majorOrProgram)
end
set_model_properties() click to toggle source
# File lib/cb/models/implementations/resumes/education.rb, line 17
def set_model_properties
  @school_name = api_response['schoolName']
  @major_or_program = api_response['majorOrProgram']
  @degree = api_response['degree']
  @graduation_date = api_response['graduationDate']
end