@@ -17,6 +17,10 @@ module MxPlatformRuby
1717 class InstitutionResponse
1818 attr_accessor :code
1919
20+ attr_accessor :forgot_password_url
21+
22+ attr_accessor :forgot_username_url
23+
2024 attr_accessor :instructional_text
2125
2226 attr_accessor :medium_logo_url
@@ -35,12 +39,16 @@ class InstitutionResponse
3539
3640 attr_accessor :supports_transaction_history
3741
42+ attr_accessor :trouble_signing_in_url
43+
3844 attr_accessor :url
3945
4046 # Attribute mapping from ruby-style variable name to JSON key.
4147 def self . attribute_map
4248 {
4349 :'code' => :'code' ,
50+ :'forgot_password_url' => :'forgot_password_url' ,
51+ :'forgot_username_url' => :'forgot_username_url' ,
4452 :'instructional_text' => :'instructional_text' ,
4553 :'medium_logo_url' => :'medium_logo_url' ,
4654 :'name' => :'name' ,
@@ -50,6 +58,7 @@ def self.attribute_map
5058 :'supports_account_verification' => :'supports_account_verification' ,
5159 :'supports_oauth' => :'supports_oauth' ,
5260 :'supports_transaction_history' => :'supports_transaction_history' ,
61+ :'trouble_signing_in_url' => :'trouble_signing_in_url' ,
5362 :'url' => :'url'
5463 }
5564 end
@@ -63,6 +72,8 @@ def self.acceptable_attributes
6372 def self . openapi_types
6473 {
6574 :'code' => :'String' ,
75+ :'forgot_password_url' => :'String' ,
76+ :'forgot_username_url' => :'String' ,
6677 :'instructional_text' => :'String' ,
6778 :'medium_logo_url' => :'String' ,
6879 :'name' => :'String' ,
@@ -72,6 +83,7 @@ def self.openapi_types
7283 :'supports_account_verification' => :'Boolean' ,
7384 :'supports_oauth' => :'Boolean' ,
7485 :'supports_transaction_history' => :'Boolean' ,
86+ :'trouble_signing_in_url' => :'String' ,
7587 :'url' => :'String'
7688 }
7789 end
@@ -80,6 +92,8 @@ def self.openapi_types
8092 def self . openapi_nullable
8193 Set . new ( [
8294 :'code' ,
95+ :'forgot_password_url' ,
96+ :'forgot_username_url' ,
8397 :'instructional_text' ,
8498 :'medium_logo_url' ,
8599 :'name' ,
@@ -89,6 +103,7 @@ def self.openapi_nullable
89103 :'supports_account_verification' ,
90104 :'supports_oauth' ,
91105 :'supports_transaction_history' ,
106+ :'trouble_signing_in_url' ,
92107 :'url'
93108 ] )
94109 end
@@ -112,6 +127,14 @@ def initialize(attributes = {})
112127 self . code = attributes [ :'code' ]
113128 end
114129
130+ if attributes . key? ( :'forgot_password_url' )
131+ self . forgot_password_url = attributes [ :'forgot_password_url' ]
132+ end
133+
134+ if attributes . key? ( :'forgot_username_url' )
135+ self . forgot_username_url = attributes [ :'forgot_username_url' ]
136+ end
137+
115138 if attributes . key? ( :'instructional_text' )
116139 self . instructional_text = attributes [ :'instructional_text' ]
117140 end
@@ -148,6 +171,10 @@ def initialize(attributes = {})
148171 self . supports_transaction_history = attributes [ :'supports_transaction_history' ]
149172 end
150173
174+ if attributes . key? ( :'trouble_signing_in_url' )
175+ self . trouble_signing_in_url = attributes [ :'trouble_signing_in_url' ]
176+ end
177+
151178 if attributes . key? ( :'url' )
152179 self . url = attributes [ :'url' ]
153180 end
@@ -172,6 +199,8 @@ def ==(o)
172199 return true if self . equal? ( o )
173200 self . class == o . class &&
174201 code == o . code &&
202+ forgot_password_url == o . forgot_password_url &&
203+ forgot_username_url == o . forgot_username_url &&
175204 instructional_text == o . instructional_text &&
176205 medium_logo_url == o . medium_logo_url &&
177206 name == o . name &&
@@ -181,6 +210,7 @@ def ==(o)
181210 supports_account_verification == o . supports_account_verification &&
182211 supports_oauth == o . supports_oauth &&
183212 supports_transaction_history == o . supports_transaction_history &&
213+ trouble_signing_in_url == o . trouble_signing_in_url &&
184214 url == o . url
185215 end
186216
@@ -193,7 +223,7 @@ def eql?(o)
193223 # Calculates hash code according to all attributes.
194224 # @return [Integer] Hash code
195225 def hash
196- [ code , instructional_text , medium_logo_url , name , small_logo_url , supports_account_identification , supports_account_statement , supports_account_verification , supports_oauth , supports_transaction_history , url ] . hash
226+ [ code , forgot_password_url , forgot_username_url , instructional_text , medium_logo_url , name , small_logo_url , supports_account_identification , supports_account_statement , supports_account_verification , supports_oauth , supports_transaction_history , trouble_signing_in_url , url ] . hash
197227 end
198228
199229 # Builds the object from hash
0 commit comments