@@ -34,6 +34,10 @@ public class InstitutionResponse {
3434 @ SerializedName (SERIALIZED_NAME_CODE )
3535 private String code ;
3636
37+ public static final String SERIALIZED_NAME_INSTRUCTIONAL_TEXT = "instructional_text" ;
38+ @ SerializedName (SERIALIZED_NAME_INSTRUCTIONAL_TEXT )
39+ private String instructionalText ;
40+
3741 public static final String SERIALIZED_NAME_MEDIUM_LOGO_URL = "medium_logo_url" ;
3842 @ SerializedName (SERIALIZED_NAME_MEDIUM_LOGO_URL )
3943 private String mediumLogoUrl ;
@@ -96,6 +100,29 @@ public void setCode(String code) {
96100 }
97101
98102
103+ public InstitutionResponse instructionalText (String instructionalText ) {
104+
105+ this .instructionalText = instructionalText ;
106+ return this ;
107+ }
108+
109+ /**
110+ * Get instructionalText
111+ * @return instructionalText
112+ **/
113+ @ javax .annotation .Nullable
114+ @ ApiModelProperty (example = "Some instructional text <a href=\" https://example.url.chase.com/instructions\" id=\" instructional_text\" >for end users</a>." , value = "" )
115+
116+ public String getInstructionalText () {
117+ return instructionalText ;
118+ }
119+
120+
121+ public void setInstructionalText (String instructionalText ) {
122+ this .instructionalText = instructionalText ;
123+ }
124+
125+
99126 public InstitutionResponse mediumLogoUrl (String mediumLogoUrl ) {
100127
101128 this .mediumLogoUrl = mediumLogoUrl ;
@@ -313,6 +340,7 @@ public boolean equals(Object o) {
313340 }
314341 InstitutionResponse institutionResponse = (InstitutionResponse ) o ;
315342 return Objects .equals (this .code , institutionResponse .code ) &&
343+ Objects .equals (this .instructionalText , institutionResponse .instructionalText ) &&
316344 Objects .equals (this .mediumLogoUrl , institutionResponse .mediumLogoUrl ) &&
317345 Objects .equals (this .name , institutionResponse .name ) &&
318346 Objects .equals (this .smallLogoUrl , institutionResponse .smallLogoUrl ) &&
@@ -330,7 +358,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
330358
331359 @ Override
332360 public int hashCode () {
333- return Objects .hash (code , mediumLogoUrl , name , smallLogoUrl , supportsAccountIdentification , supportsAccountStatement , supportsAccountVerification , supportsOauth , supportsTransactionHistory , url );
361+ return Objects .hash (code , instructionalText , mediumLogoUrl , name , smallLogoUrl , supportsAccountIdentification , supportsAccountStatement , supportsAccountVerification , supportsOauth , supportsTransactionHistory , url );
334362 }
335363
336364 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -345,6 +373,7 @@ public String toString() {
345373 StringBuilder sb = new StringBuilder ();
346374 sb .append ("class InstitutionResponse {\n " );
347375 sb .append (" code: " ).append (toIndentedString (code )).append ("\n " );
376+ sb .append (" instructionalText: " ).append (toIndentedString (instructionalText )).append ("\n " );
348377 sb .append (" mediumLogoUrl: " ).append (toIndentedString (mediumLogoUrl )).append ("\n " );
349378 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
350379 sb .append (" smallLogoUrl: " ).append (toIndentedString (smallLogoUrl )).append ("\n " );
0 commit comments