Class: Moov::Models::Operations::ListAccountsRequest
- Inherits:
-
Object
- Object
- Moov::Models::Operations::ListAccountsRequest
- Extended by:
- T::Sig
- Includes:
- Crystalline::MetadataFields
- Defined in:
- lib/moov/models/operations/listaccounts_request.rb
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(name: nil, email: nil, type: nil, include_guest: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00') ⇒ ListAccountsRequest
constructor
A new instance of ListAccountsRequest.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(name: nil, email: nil, type: nil, include_guest: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00') ⇒ ListAccountsRequest
Returns a new instance of ListAccountsRequest.
65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/moov/models/operations/listaccounts_request.rb', line 65 def initialize(name: nil, email: nil, type: nil, include_guest: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil, x_moov_version: 'v2024.01.00') @name = name @email = email @type = type @include_guest = include_guest @foreign_id = foreign_id @include_disconnected = include_disconnected @capability = capability @capability_status = capability_status @skip = skip @count = count @x_moov_version = x_moov_version end |
Instance Method Details
#==(other) ⇒ Object
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/moov/models/operations/listaccounts_request.rb', line 80 def ==(other) return false unless other.is_a? self.class return false unless @name == other.name return false unless @email == other.email return false unless @type == other.type return false unless @include_guest == other.include_guest return false unless @foreign_id == other.foreign_id return false unless @include_disconnected == other.include_disconnected return false unless @capability == other.capability return false unless @capability_status == other.capability_status return false unless @skip == other.skip return false unless @count == other.count return false unless @x_moov_version == other.x_moov_version true end |