Class: Kombo::Models::Shared::PostAtsImportTrackedApplicationRequestBody
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::PostAtsImportTrackedApplicationRequestBody
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/postatsimporttrackedapplicationrequestbody.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(erecruiter: nil, successfactors: nil, recruitee: nil, greenhouse: nil, greenhousev3: nil, onlyfy: nil, smartrecruiters: nil, tracked_at: nil) ⇒ PostAtsImportTrackedApplicationRequestBody
constructor
A new instance of PostAtsImportTrackedApplicationRequestBody.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(erecruiter: nil, successfactors: nil, recruitee: nil, greenhouse: nil, greenhousev3: nil, onlyfy: nil, smartrecruiters: nil, tracked_at: nil) ⇒ PostAtsImportTrackedApplicationRequestBody
Returns a new instance of PostAtsImportTrackedApplicationRequestBody.
34 35 36 37 38 39 40 41 42 43 |
# File 'lib/kombo/models/shared/postatsimporttrackedapplicationrequestbody.rb', line 34 def initialize(erecruiter: nil, successfactors: nil, recruitee: nil, greenhouse: nil, greenhousev3: nil, onlyfy: nil, smartrecruiters: nil, tracked_at: nil) @erecruiter = erecruiter @successfactors = successfactors @recruitee = recruitee @greenhouse = greenhouse @greenhousev3 = greenhousev3 @onlyfy = onlyfy @smartrecruiters = smartrecruiters @tracked_at = tracked_at end |
Instance Method Details
#==(other) ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/kombo/models/shared/postatsimporttrackedapplicationrequestbody.rb', line 46 def ==(other) return false unless other.is_a? self.class return false unless @erecruiter == other.erecruiter return false unless @successfactors == other.successfactors return false unless @recruitee == other.recruitee return false unless @greenhouse == other.greenhouse return false unless @greenhousev3 == other.greenhousev3 return false unless @onlyfy == other.onlyfy return false unless @smartrecruiters == other.smartrecruiters return false unless @tracked_at == other.tracked_at true end |