@@ -34,6 +34,14 @@ public class InstitutionResponse {
3434 @ SerializedName (SERIALIZED_NAME_CODE )
3535 private String code ;
3636
37+ public static final String SERIALIZED_NAME_FORGOT_PASSWORD_URL = "forgot_password_url" ;
38+ @ SerializedName (SERIALIZED_NAME_FORGOT_PASSWORD_URL )
39+ private String forgotPasswordUrl ;
40+
41+ public static final String SERIALIZED_NAME_FORGOT_USERNAME_URL = "forgot_username_url" ;
42+ @ SerializedName (SERIALIZED_NAME_FORGOT_USERNAME_URL )
43+ private String forgotUsernameUrl ;
44+
3745 public static final String SERIALIZED_NAME_INSTRUCTIONAL_TEXT = "instructional_text" ;
3846 @ SerializedName (SERIALIZED_NAME_INSTRUCTIONAL_TEXT )
3947 private String instructionalText ;
@@ -70,6 +78,10 @@ public class InstitutionResponse {
7078 @ SerializedName (SERIALIZED_NAME_SUPPORTS_TRANSACTION_HISTORY )
7179 private Boolean supportsTransactionHistory ;
7280
81+ public static final String SERIALIZED_NAME_TROUBLE_SIGNING_IN_URL = "trouble_signing_in_url" ;
82+ @ SerializedName (SERIALIZED_NAME_TROUBLE_SIGNING_IN_URL )
83+ private String troubleSigningInUrl ;
84+
7385 public static final String SERIALIZED_NAME_URL = "url" ;
7486 @ SerializedName (SERIALIZED_NAME_URL )
7587 private String url ;
@@ -100,6 +112,52 @@ public void setCode(String code) {
100112 }
101113
102114
115+ public InstitutionResponse forgotPasswordUrl (String forgotPasswordUrl ) {
116+
117+ this .forgotPasswordUrl = forgotPasswordUrl ;
118+ return this ;
119+ }
120+
121+ /**
122+ * Get forgotPasswordUrl
123+ * @return forgotPasswordUrl
124+ **/
125+ @ javax .annotation .Nullable
126+ @ ApiModelProperty (example = "https://example.url.chase.com/forgot-password" , value = "" )
127+
128+ public String getForgotPasswordUrl () {
129+ return forgotPasswordUrl ;
130+ }
131+
132+
133+ public void setForgotPasswordUrl (String forgotPasswordUrl ) {
134+ this .forgotPasswordUrl = forgotPasswordUrl ;
135+ }
136+
137+
138+ public InstitutionResponse forgotUsernameUrl (String forgotUsernameUrl ) {
139+
140+ this .forgotUsernameUrl = forgotUsernameUrl ;
141+ return this ;
142+ }
143+
144+ /**
145+ * Get forgotUsernameUrl
146+ * @return forgotUsernameUrl
147+ **/
148+ @ javax .annotation .Nullable
149+ @ ApiModelProperty (example = "https://example.url.chase.com/forgot-username" , value = "" )
150+
151+ public String getForgotUsernameUrl () {
152+ return forgotUsernameUrl ;
153+ }
154+
155+
156+ public void setForgotUsernameUrl (String forgotUsernameUrl ) {
157+ this .forgotUsernameUrl = forgotUsernameUrl ;
158+ }
159+
160+
103161 public InstitutionResponse instructionalText (String instructionalText ) {
104162
105163 this .instructionalText = instructionalText ;
@@ -307,6 +365,29 @@ public void setSupportsTransactionHistory(Boolean supportsTransactionHistory) {
307365 }
308366
309367
368+ public InstitutionResponse troubleSigningInUrl (String troubleSigningInUrl ) {
369+
370+ this .troubleSigningInUrl = troubleSigningInUrl ;
371+ return this ;
372+ }
373+
374+ /**
375+ * Get troubleSigningInUrl
376+ * @return troubleSigningInUrl
377+ **/
378+ @ javax .annotation .Nullable
379+ @ ApiModelProperty (example = "https://example.url.chase.com/login-trouble" , value = "" )
380+
381+ public String getTroubleSigningInUrl () {
382+ return troubleSigningInUrl ;
383+ }
384+
385+
386+ public void setTroubleSigningInUrl (String troubleSigningInUrl ) {
387+ this .troubleSigningInUrl = troubleSigningInUrl ;
388+ }
389+
390+
310391 public InstitutionResponse url (String url ) {
311392
312393 this .url = url ;
@@ -340,6 +421,8 @@ public boolean equals(Object o) {
340421 }
341422 InstitutionResponse institutionResponse = (InstitutionResponse ) o ;
342423 return Objects .equals (this .code , institutionResponse .code ) &&
424+ Objects .equals (this .forgotPasswordUrl , institutionResponse .forgotPasswordUrl ) &&
425+ Objects .equals (this .forgotUsernameUrl , institutionResponse .forgotUsernameUrl ) &&
343426 Objects .equals (this .instructionalText , institutionResponse .instructionalText ) &&
344427 Objects .equals (this .mediumLogoUrl , institutionResponse .mediumLogoUrl ) &&
345428 Objects .equals (this .name , institutionResponse .name ) &&
@@ -349,6 +432,7 @@ public boolean equals(Object o) {
349432 Objects .equals (this .supportsAccountVerification , institutionResponse .supportsAccountVerification ) &&
350433 Objects .equals (this .supportsOauth , institutionResponse .supportsOauth ) &&
351434 Objects .equals (this .supportsTransactionHistory , institutionResponse .supportsTransactionHistory ) &&
435+ Objects .equals (this .troubleSigningInUrl , institutionResponse .troubleSigningInUrl ) &&
352436 Objects .equals (this .url , institutionResponse .url );
353437 }
354438
@@ -358,7 +442,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
358442
359443 @ Override
360444 public int hashCode () {
361- return Objects .hash (code , instructionalText , mediumLogoUrl , name , smallLogoUrl , supportsAccountIdentification , supportsAccountStatement , supportsAccountVerification , supportsOauth , supportsTransactionHistory , url );
445+ return Objects .hash (code , forgotPasswordUrl , forgotUsernameUrl , instructionalText , mediumLogoUrl , name , smallLogoUrl , supportsAccountIdentification , supportsAccountStatement , supportsAccountVerification , supportsOauth , supportsTransactionHistory , troubleSigningInUrl , url );
362446 }
363447
364448 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -373,6 +457,8 @@ public String toString() {
373457 StringBuilder sb = new StringBuilder ();
374458 sb .append ("class InstitutionResponse {\n " );
375459 sb .append (" code: " ).append (toIndentedString (code )).append ("\n " );
460+ sb .append (" forgotPasswordUrl: " ).append (toIndentedString (forgotPasswordUrl )).append ("\n " );
461+ sb .append (" forgotUsernameUrl: " ).append (toIndentedString (forgotUsernameUrl )).append ("\n " );
376462 sb .append (" instructionalText: " ).append (toIndentedString (instructionalText )).append ("\n " );
377463 sb .append (" mediumLogoUrl: " ).append (toIndentedString (mediumLogoUrl )).append ("\n " );
378464 sb .append (" name: " ).append (toIndentedString (name )).append ("\n " );
@@ -382,6 +468,7 @@ public String toString() {
382468 sb .append (" supportsAccountVerification: " ).append (toIndentedString (supportsAccountVerification )).append ("\n " );
383469 sb .append (" supportsOauth: " ).append (toIndentedString (supportsOauth )).append ("\n " );
384470 sb .append (" supportsTransactionHistory: " ).append (toIndentedString (supportsTransactionHistory )).append ("\n " );
471+ sb .append (" troubleSigningInUrl: " ).append (toIndentedString (troubleSigningInUrl )).append ("\n " );
385472 sb .append (" url: " ).append (toIndentedString (url )).append ("\n " );
386473 sb .append ("}" );
387474 return sb .toString ();
0 commit comments