Class: Kombo::Models::Shared::PostAtsCandidatesCandidateIdResultLinksRequestBodyRemoteFields
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::PostAtsCandidatesCandidateIdResultLinksRequestBodyRemoteFields
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/postatscandidatescandidateidresultlinksrequestbody_remote_fields.rb
Overview
Additional fields that we will pass through to specific ATS systems.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(icims: nil, oracle: nil, talent360: nil, greenhouse: nil, workable: nil) ⇒ PostAtsCandidatesCandidateIdResultLinksRequestBodyRemoteFields
constructor
A new instance of PostAtsCandidatesCandidateIdResultLinksRequestBodyRemoteFields.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(icims: nil, oracle: nil, talent360: nil, greenhouse: nil, workable: nil) ⇒ PostAtsCandidatesCandidateIdResultLinksRequestBodyRemoteFields
Returns a new instance of PostAtsCandidatesCandidateIdResultLinksRequestBodyRemoteFields.
27 28 29 30 31 32 33 |
# File 'lib/kombo/models/shared/postatscandidatescandidateidresultlinksrequestbody_remote_fields.rb', line 27 def initialize(icims: nil, oracle: nil, talent360: nil, greenhouse: nil, workable: nil) @icims = icims @oracle = oracle @talent360 = talent360 @greenhouse = greenhouse @workable = workable end |
Instance Method Details
#==(other) ⇒ Object
36 37 38 39 40 41 42 43 44 |
# File 'lib/kombo/models/shared/postatscandidatescandidateidresultlinksrequestbody_remote_fields.rb', line 36 def ==(other) return false unless other.is_a? self.class return false unless @icims == other.icims return false unless @oracle == other.oracle return false unless @talent360 == other.talent360 return false unless @greenhouse == other.greenhouse return false unless @workable == other.workable true end |