Class: Kombo::Models::Operations::GetAtsInterviewsRequest
- Inherits:
-
Object
- Object
- Kombo::Models::Operations::GetAtsInterviewsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/operations/getatsinterviews_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_ids: nil, job_ids: nil, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) ⇒ GetAtsInterviewsRequest
constructor
A new instance of GetAtsInterviewsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_ids: nil, job_ids: nil, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) ⇒ GetAtsInterviewsRequest
Returns a new instance of GetAtsInterviewsRequest.
50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/kombo/models/operations/getatsinterviews_request.rb', line 50 def initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_ids: nil, job_ids: nil, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) @integration_id = integration_id @cursor = cursor @updated_after = updated_after @ids = ids @remote_ids = remote_ids @job_ids = job_ids @page_size = page_size @include_deleted = include_deleted @ignore_unsupported_filters = ignore_unsupported_filters end |
Instance Method Details
#==(other) ⇒ Object
63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/kombo/models/operations/getatsinterviews_request.rb', line 63 def ==(other) return false unless other.is_a? self.class return false unless @integration_id == other.integration_id return false unless @cursor == other.cursor return false unless @updated_after == other.updated_after return false unless @ids == other.ids return false unless @remote_ids == other.remote_ids return false unless @job_ids == other.job_ids return false unless @page_size == other.page_size return false unless @include_deleted == other.include_deleted return false unless @ignore_unsupported_filters == other.ignore_unsupported_filters true end |