Class: StackOne::Models::Shared::AtsUpdateBackgroundCheckResultRequestDtoCandidate
- Inherits:
-
Object
- Object
- StackOne::Models::Shared::AtsUpdateBackgroundCheckResultRequestDtoCandidate
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/shared/atsupdatebackgroundcheckresultrequestdto_candidate.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id: nil, profile_url: nil) ⇒ AtsUpdateBackgroundCheckResultRequestDtoCandidate
constructor
A new instance of AtsUpdateBackgroundCheckResultRequestDtoCandidate.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(id: nil, profile_url: nil) ⇒ AtsUpdateBackgroundCheckResultRequestDtoCandidate
Returns a new instance of AtsUpdateBackgroundCheckResultRequestDtoCandidate.
21 22 23 24 |
# File 'lib/stack_one/models/shared/atsupdatebackgroundcheckresultrequestdto_candidate.rb', line 21 def initialize(id: nil, profile_url: nil) @id = id @profile_url = profile_url end |
Instance Method Details
#==(other) ⇒ Object
27 28 29 30 31 32 |
# File 'lib/stack_one/models/shared/atsupdatebackgroundcheckresultrequestdto_candidate.rb', line 27 def ==(other) return false unless other.is_a? self.class return false unless @id == other.id return false unless @profile_url == other.profile_url true end |