Class: Moov::Models::Operations::ListConnectedAccountsForAccountRequest

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Includes:
Crystalline::MetadataFields
Defined in:
lib/moov/models/operations/listconnectedaccountsforaccount_request.rb

Instance Method Summary collapse

Methods included from Crystalline::MetadataFields

#field, #fields, included, #marshal_single, #to_dict, #to_json

Constructor Details

#initialize(account_id:, x_moov_version: nil, name: nil, email: nil, type: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil) ⇒ ListConnectedAccountsForAccountRequest

Returns a new instance of ListConnectedAccountsForAccountRequest.



67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'lib/moov/models/operations/listconnectedaccountsforaccount_request.rb', line 67

def initialize(account_id:, x_moov_version: nil, name: nil, email: nil, type: nil, foreign_id: nil, include_disconnected: nil, capability: nil, capability_status: nil, skip: nil, count: nil)
  @account_id = 
  @x_moov_version = x_moov_version
  @name = name
  @email = email
  @type = type
  @foreign_id = foreign_id
  @include_disconnected = include_disconnected
  @capability = capability
  @capability_status = capability_status
  @skip = skip
  @count = count
end

Instance Method Details

#==(other) ⇒ Object



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/moov/models/operations/listconnectedaccountsforaccount_request.rb', line 82

def ==(other)
  return false unless other.is_a? self.class
  return false unless @account_id == other.
  return false unless @x_moov_version == other.x_moov_version
  return false unless @name == other.name
  return false unless @email == other.email
  return false unless @type == other.type
  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
  true
end