Class: Kombo::Models::Operations::GetAtsOffersRequest
- Inherits:
-
Object
- Object
- Kombo::Models::Operations::GetAtsOffersRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/kombo/models/operations/getatsoffers_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_ids: nil, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) ⇒ GetAtsOffersRequest
constructor
A new instance of GetAtsOffersRequest.
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, page_size: 100, include_deleted: false, ignore_unsupported_filters: false) ⇒ GetAtsOffersRequest
Returns a new instance of GetAtsOffersRequest.
47 48 49 50 51 52 53 54 55 56 |
# File 'lib/kombo/models/operations/getatsoffers_request.rb', line 47 def initialize(integration_id: nil, cursor: nil, updated_after: nil, ids: nil, remote_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 @page_size = page_size @include_deleted = include_deleted @ignore_unsupported_filters = ignore_unsupported_filters end |
Instance Method Details
#==(other) ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/kombo/models/operations/getatsoffers_request.rb', line 59 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 @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 |