Class: Kombo::Models::Shared::PostAtsApplicationsApplicationIdNotesRequestBodyRemoteFields

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

Overview

Tool specific remote fields for the note.

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

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

Constructor Details

#initialize(teamtailor: nil, greenhouse: nil, greenhousev3: nil, recruitee: nil, bullhorn: nil, lever: nil, workable: nil) ⇒ PostAtsApplicationsApplicationIdNotesRequestBodyRemoteFields

Returns a new instance of PostAtsApplicationsApplicationIdNotesRequestBodyRemoteFields.



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

def initialize(teamtailor: nil, greenhouse: nil, greenhousev3: nil, recruitee: nil, bullhorn: nil, lever: nil, workable: nil)
  @teamtailor = teamtailor
  @greenhouse = greenhouse
  @greenhousev3 = greenhousev3
  @recruitee = recruitee
  @bullhorn = bullhorn
  @lever = lever
  @workable = workable
end

Instance Method Details

#==(other) ⇒ Object



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

def ==(other)
  return false unless other.is_a? self.class
  return false unless @teamtailor == other.teamtailor
  return false unless @greenhouse == other.greenhouse
  return false unless @greenhousev3 == other.greenhousev3
  return false unless @recruitee == other.recruitee
  return false unless @bullhorn == other.bullhorn
  return false unless @lever == other.lever
  return false unless @workable == other.workable
  true
end