Class: Moov::Models::Operations::ListFeePlanAgreementsRequest
- Inherits:
-
Object
- Object
- Moov::Models::Operations::ListFeePlanAgreementsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/moov/models/operations/listfeeplanagreements_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(account_id:, skip: nil, count: nil, agreement_id: nil, status: nil, x_moov_version: 'v2024.01.00') ⇒ ListFeePlanAgreementsRequest
constructor
A new instance of ListFeePlanAgreementsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(account_id:, skip: nil, count: nil, agreement_id: nil, status: nil, x_moov_version: 'v2024.01.00') ⇒ ListFeePlanAgreementsRequest
Returns a new instance of ListFeePlanAgreementsRequest.
38 39 40 41 42 43 44 45 |
# File 'lib/moov/models/operations/listfeeplanagreements_request.rb', line 38 def initialize(account_id:, skip: nil, count: nil, agreement_id: nil, status: nil, x_moov_version: 'v2024.01.00') @account_id = account_id @skip = skip @count = count @agreement_id = agreement_id @status = status @x_moov_version = x_moov_version end |
Instance Method Details
#==(other) ⇒ Object
48 49 50 51 52 53 54 55 56 57 |
# File 'lib/moov/models/operations/listfeeplanagreements_request.rb', line 48 def ==(other) return false unless other.is_a? self.class return false unless @account_id == other.account_id return false unless @skip == other.skip return false unless @count == other.count return false unless @agreement_id == other.agreement_id return false unless @status == other.status return false unless @x_moov_version == other.x_moov_version true end |