Class: Kombo::Models::Operations::GetAtsApplicationsRequest
- Inherits:
-
Object
- Object
- Kombo::Models::Operations::GetAtsApplicationsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/operations/getatsapplications_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_ids: nil, outcomes: nil, job_ids: nil, job_remote_ids: nil, current_stage_ids: nil, remote_created_after: nil, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) ⇒ GetAtsApplicationsRequest
constructor
A new instance of GetAtsApplicationsRequest.
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, outcomes: nil, job_ids: nil, job_remote_ids: nil, current_stage_ids: nil, remote_created_after: nil, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) ⇒ GetAtsApplicationsRequest
Returns a new instance of GetAtsApplicationsRequest.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/kombo/models/operations/getatsapplications_request.rb', line 66 def initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_ids: nil, outcomes: nil, job_ids: nil, job_remote_ids: nil, current_stage_ids: nil, remote_created_after: 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 @outcomes = outcomes @job_ids = job_ids @job_remote_ids = job_remote_ids @current_stage_ids = current_stage_ids @remote_created_after = remote_created_after @page_size = page_size @include_deleted = include_deleted @ignore_unsupported_filters = ignore_unsupported_filters end |
Instance Method Details
#==(other) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/kombo/models/operations/getatsapplications_request.rb', line 83 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 @outcomes == other.outcomes return false unless @job_ids == other.job_ids return false unless @job_remote_ids == other.job_remote_ids return false unless @current_stage_ids == other.current_stage_ids return false unless @remote_created_after == other.remote_created_after 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 |