Class: Kombo::Models::Shared::PostAtsJobsJobIdApplicationsRequestBodyResumeData

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_resume_data.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(education_data: nil, skill_data: nil, language_data: nil, experience_data: nil) ⇒ PostAtsJobsJobIdApplicationsRequestBodyResumeData

Returns a new instance of PostAtsJobsJobIdApplicationsRequestBodyResumeData.



25
26
27
28
29
30
# File 'lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_resume_data.rb', line 25

def initialize(education_data: nil, skill_data: nil, language_data: nil, experience_data: nil)
  @education_data = education_data
  @skill_data = skill_data
  @language_data = language_data
  @experience_data = experience_data
end

Instance Method Details

#==(other) ⇒ Object



33
34
35
36
37
38
39
40
# File 'lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_resume_data.rb', line 33

def ==(other)
  return false unless other.is_a? self.class
  return false unless @education_data == other.education_data
  return false unless @skill_data == other.skill_data
  return false unless @language_data == other.language_data
  return false unless @experience_data == other.experience_data
  true
end