Class: StackOne::Models::Operations::AtsGetBackgroundCheckPackageRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/stack_one/models/operations/ats_get_background_check_package_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(id:, x_account_id:, prefer: nil, fields_: nil, proxy: nil, raw: nil) ⇒ AtsGetBackgroundCheckPackageRequest

Returns a new instance of AtsGetBackgroundCheckPackageRequest.



29
30
31
32
33
34
35
36
# File 'lib/stack_one/models/operations/ats_get_background_check_package_request.rb', line 29

def initialize(id:, x_account_id:, prefer: nil, fields_: nil, proxy: nil, raw: nil)
  @id = id
  @x_account_id = 
  @prefer = prefer
  @fields_ = fields_
  @proxy = proxy
  @raw = raw
end

Instance Method Details

#==(other) ⇒ Object



39
40
41
42
43
44
45
46
47
48
# File 'lib/stack_one/models/operations/ats_get_background_check_package_request.rb', line 39

def ==(other)
  return false unless other.is_a? self.class
  return false unless @id == other.id
  return false unless @x_account_id == other.
  return false unless @prefer == other.prefer
  return false unless @fields_ == other.fields_
  return false unless @proxy == other.proxy
  return false unless @raw == other.raw
  true
end