@@ -17,6 +17,8 @@ module MxPlatformRuby
1717 class InstitutionResponse
1818 attr_accessor :code
1919
20+ attr_accessor :instructional_text
21+
2022 attr_accessor :medium_logo_url
2123
2224 attr_accessor :name
@@ -39,6 +41,7 @@ class InstitutionResponse
3941 def self . attribute_map
4042 {
4143 :'code' => :'code' ,
44+ :'instructional_text' => :'instructional_text' ,
4245 :'medium_logo_url' => :'medium_logo_url' ,
4346 :'name' => :'name' ,
4447 :'small_logo_url' => :'small_logo_url' ,
@@ -60,6 +63,7 @@ def self.acceptable_attributes
6063 def self . openapi_types
6164 {
6265 :'code' => :'String' ,
66+ :'instructional_text' => :'String' ,
6367 :'medium_logo_url' => :'String' ,
6468 :'name' => :'String' ,
6569 :'small_logo_url' => :'String' ,
@@ -76,6 +80,7 @@ def self.openapi_types
7680 def self . openapi_nullable
7781 Set . new ( [
7882 :'code' ,
83+ :'instructional_text' ,
7984 :'medium_logo_url' ,
8085 :'name' ,
8186 :'small_logo_url' ,
@@ -107,6 +112,10 @@ def initialize(attributes = {})
107112 self . code = attributes [ :'code' ]
108113 end
109114
115+ if attributes . key? ( :'instructional_text' )
116+ self . instructional_text = attributes [ :'instructional_text' ]
117+ end
118+
110119 if attributes . key? ( :'medium_logo_url' )
111120 self . medium_logo_url = attributes [ :'medium_logo_url' ]
112121 end
@@ -163,6 +172,7 @@ def ==(o)
163172 return true if self . equal? ( o )
164173 self . class == o . class &&
165174 code == o . code &&
175+ instructional_text == o . instructional_text &&
166176 medium_logo_url == o . medium_logo_url &&
167177 name == o . name &&
168178 small_logo_url == o . small_logo_url &&
@@ -183,7 +193,7 @@ def eql?(o)
183193 # Calculates hash code according to all attributes.
184194 # @return [Integer] Hash code
185195 def hash
186- [ code , medium_logo_url , name , small_logo_url , supports_account_identification , supports_account_statement , supports_account_verification , supports_oauth , supports_transaction_history , url ] . 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
187197 end
188198
189199 # Builds the object from hash
0 commit comments