Class: Kombo::Models::Shared::PostAtsImportTrackedApplicationRequestBody

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

Instance Method Summary collapse

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, onlyfy: nil, smartrecruiters: nil, tracked_at: nil) ⇒ PostAtsImportTrackedApplicationRequestBody

Returns a new instance of PostAtsImportTrackedApplicationRequestBody.



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

def initialize(erecruiter: nil, successfactors: nil, recruitee: nil, greenhouse: nil, onlyfy: nil, smartrecruiters: nil, tracked_at: nil)
  @erecruiter = erecruiter
  @successfactors = successfactors
  @recruitee = recruitee
  @greenhouse = greenhouse
  @onlyfy = onlyfy
  @smartrecruiters = smartrecruiters
  @tracked_at = tracked_at
end

Instance Method Details

#==(other) ⇒ Object



43
44
45
46
47
48
49
50
51
52
53
# File 'lib/kombo/models/shared/postatsimporttrackedapplicationrequestbody.rb', line 43

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 @onlyfy == other.onlyfy
  return false unless @smartrecruiters == other.smartrecruiters
  return false unless @tracked_at == other.tracked_at
  true
end