Class: StackOne::Models::Operations::AtsDeleteBackgroundCheckPackageRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::AtsDeleteBackgroundCheckPackageRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/ats_delete_background_check_package_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id:, x_account_id:, prefer: nil) ⇒ AtsDeleteBackgroundCheckPackageRequest
constructor
A new instance of AtsDeleteBackgroundCheckPackageRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(id:, x_account_id:, prefer: nil) ⇒ AtsDeleteBackgroundCheckPackageRequest
Returns a new instance of AtsDeleteBackgroundCheckPackageRequest.
23 24 25 26 27 |
# File 'lib/stack_one/models/operations/ats_delete_background_check_package_request.rb', line 23 def initialize(id:, x_account_id:, prefer: nil) @id = id @x_account_id = x_account_id @prefer = prefer end |
Instance Method Details
#==(other) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/stack_one/models/operations/ats_delete_background_check_package_request.rb', line 30 def ==(other) return false unless other.is_a? self.class return false unless @id == other.id return false unless @x_account_id == other.x_account_id return false unless @prefer == other.prefer true end |