Class: Kombo::Models::Shared::PostAtsApplicationsApplicationIdResultLinksRequestBodyRemoteFields
- Inherits:
-
Object
- Object
- Kombo::Models::Shared::PostAtsApplicationsApplicationIdResultLinksRequestBodyRemoteFields
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/shared/postatsapplicationsapplicationidresultlinksrequestbody_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, greenhouse: nil, workable: nil) ⇒ PostAtsApplicationsApplicationIdResultLinksRequestBodyRemoteFields
constructor
A new instance of PostAtsApplicationsApplicationIdResultLinksRequestBodyRemoteFields.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(icims: nil, oracle: nil, greenhouse: nil, workable: nil) ⇒ PostAtsApplicationsApplicationIdResultLinksRequestBodyRemoteFields
Returns a new instance of PostAtsApplicationsApplicationIdResultLinksRequestBodyRemoteFields.
25 26 27 28 29 30 |
# File 'lib/kombo/models/shared/postatsapplicationsapplicationidresultlinksrequestbody_remote_fields.rb', line 25 def initialize(icims: nil, oracle: nil, greenhouse: nil, workable: nil) @icims = icims @oracle = oracle @greenhouse = greenhouse @workable = workable end |
Instance Method Details
#==(other) ⇒ Object
33 34 35 36 37 38 39 40 |
# File 'lib/kombo/models/shared/postatsapplicationsapplicationidresultlinksrequestbody_remote_fields.rb', line 33 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 @greenhouse == other.greenhouse return false unless @workable == other.workable true end |