@@ -21,6 +21,8 @@ class AccountNumberResponse
2121
2222 attr_accessor :guid
2323
24+ attr_accessor :loan_guarantor
25+
2426 attr_accessor :institution_number
2527
2628 attr_accessor :member_guid
@@ -39,6 +41,7 @@ def self.attribute_map
3941 :'account_guid' => :'account_guid' ,
4042 :'account_number' => :'account_number' ,
4143 :'guid' => :'guid' ,
44+ :'loan_guarantor' => :'loan_guarantor' ,
4245 :'institution_number' => :'institution_number' ,
4346 :'member_guid' => :'member_guid' ,
4447 :'passed_validation' => :'passed_validation' ,
@@ -59,6 +62,7 @@ def self.openapi_types
5962 :'account_guid' => :'String' ,
6063 :'account_number' => :'String' ,
6164 :'guid' => :'String' ,
65+ :'loan_guarantor' => :'String' ,
6266 :'institution_number' => :'String' ,
6367 :'member_guid' => :'String' ,
6468 :'passed_validation' => :'Boolean' ,
@@ -74,6 +78,7 @@ def self.openapi_nullable
7478 :'account_guid' ,
7579 :'account_number' ,
7680 :'guid' ,
81+ :'loan_guarantor' ,
7782 :'institution_number' ,
7883 :'member_guid' ,
7984 :'passed_validation' ,
@@ -110,6 +115,10 @@ def initialize(attributes = {})
110115 self . guid = attributes [ :'guid' ]
111116 end
112117
118+ if attributes . key? ( :'loan_guarantor' )
119+ self . loan_guarantor = attributes [ :'loan_guarantor' ]
120+ end
121+
113122 if attributes . key? ( :'institution_number' )
114123 self . institution_number = attributes [ :'institution_number' ]
115124 end
@@ -158,6 +167,7 @@ def ==(o)
158167 account_guid == o . account_guid &&
159168 account_number == o . account_number &&
160169 guid == o . guid &&
170+ loan_guarantor == o . loan_guarantor &&
161171 institution_number == o . institution_number &&
162172 member_guid == o . member_guid &&
163173 passed_validation == o . passed_validation &&
@@ -175,7 +185,7 @@ def eql?(o)
175185 # Calculates hash code according to all attributes.
176186 # @return [Integer] Hash code
177187 def hash
178- [ account_guid , account_number , guid , institution_number , member_guid , passed_validation , routing_number , transit_number , user_guid ] . hash
188+ [ account_guid , account_number , guid , loan_guarantor , institution_number , member_guid , passed_validation , routing_number , transit_number , user_guid ] . hash
179189 end
180190
181191 # Builds the object from hash
0 commit comments