Class: Kombo::Models::Shared::PostAtsJobsJobIdApplicationsRequestBodySuccessfactors
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::PostAtsJobsJobIdApplicationsRequestBodySuccessfactors
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_successfactors.rb
Overview
Fields specific to SAP SuccessFactors.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(candidate: nil, job_application: nil, copy_job_application_attachments: nil, update_existing_candidate: nil) ⇒ PostAtsJobsJobIdApplicationsRequestBodySuccessfactors
constructor
A new instance of PostAtsJobsJobIdApplicationsRequestBodySuccessfactors.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(candidate: nil, job_application: nil, copy_job_application_attachments: nil, update_existing_candidate: nil) ⇒ PostAtsJobsJobIdApplicationsRequestBodySuccessfactors
Returns a new instance of PostAtsJobsJobIdApplicationsRequestBodySuccessfactors.
25 26 27 28 29 30 |
# File 'lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_successfactors.rb', line 25 def initialize(candidate: nil, job_application: nil, copy_job_application_attachments: nil, update_existing_candidate: nil) @candidate = candidate @job_application = job_application @copy_job_application_attachments = @update_existing_candidate = update_existing_candidate end |
Instance Method Details
#==(other) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/kombo/models/shared/postatsjobsjobidapplicationsrequestbody_successfactors.rb', line 33 def ==(other) return false unless other.is_a? self.class return false unless @candidate == other.candidate return false unless @job_application == other.job_application return false unless @copy_job_application_attachments == other. return false unless @update_existing_candidate == other.update_existing_candidate true end |