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, recruitee: nil, bullhorn: nil, lever: nil, workable: nil) ⇒ PostAtsApplicationsApplicationIdNotesRequestBodyRemoteFields

Returns a new instance of PostAtsApplicationsApplicationIdNotesRequestBodyRemoteFields.



29
30
31
32
33
34
35
36
# File 'lib/kombo/models/shared/postatsapplicationsapplicationidnotesrequestbody_remote_fields.rb', line 29

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

Instance Method Details

#==(other) ⇒ Object



39
40
41
42
43
44
45
46
47
48
# File 'lib/kombo/models/shared/postatsapplicationsapplicationidnotesrequestbody_remote_fields.rb', line 39

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 @recruitee == other.recruitee
  return false unless @bullhorn == other.bullhorn
  return false unless @lever == other.lever
  return false unless @workable == other.workable
  true
end