Class: StackOne::Models::Operations::HrisGetEmployeeCustomFieldDefinitionRequest
- Inherits:
-
Object
- Object
- StackOne::Models::Operations::HrisGetEmployeeCustomFieldDefinitionRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/stack_one/models/operations/hris_get_employee_custom_field_definition_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(id:, x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil) ⇒ HrisGetEmployeeCustomFieldDefinitionRequest
constructor
A new instance of HrisGetEmployeeCustomFieldDefinitionRequest.
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, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil) ⇒ HrisGetEmployeeCustomFieldDefinitionRequest
Returns a new instance of HrisGetEmployeeCustomFieldDefinitionRequest.
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/stack_one/models/operations/hris_get_employee_custom_field_definition_request.rb', line 43 def initialize(id:, x_account_id:, prefer: nil, fields_: nil, filter: nil, next_: nil, page: nil, page_size: nil, proxy: nil, raw: nil, updated_after: nil) @id = id @x_account_id = x_account_id @prefer = prefer @fields_ = fields_ @filter = filter @next_ = next_ @page = page @page_size = page_size @proxy = proxy @raw = raw @updated_after = updated_after end |
Instance Method Details
#==(other) ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/stack_one/models/operations/hris_get_employee_custom_field_definition_request.rb', line 58 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 return false unless @fields_ == other.fields_ return false unless @filter == other.filter return false unless @next_ == other.next_ return false unless @page == other.page return false unless @page_size == other.page_size return false unless @proxy == other.proxy return false unless @raw == other.raw return false unless @updated_after == other.updated_after true end |