@@ -49,6 +49,10 @@ public class WidgetRequest {
4949 @ SerializedName (SERIALIZED_NAME_CURRENT_MEMBER_GUID )
5050 private String currentMemberGuid ;
5151
52+ public static final String SERIALIZED_NAME_DISABLE_BACKGROUND_AGG = "disable_background_agg" ;
53+ @ SerializedName (SERIALIZED_NAME_DISABLE_BACKGROUND_AGG )
54+ private Boolean disableBackgroundAgg ;
55+
5256 public static final String SERIALIZED_NAME_DISABLE_INSTITUTION_SEARCH = "disable_institution_search" ;
5357 @ SerializedName (SERIALIZED_NAME_DISABLE_INSTITUTION_SEARCH )
5458 private Boolean disableInstitutionSearch ;
@@ -207,6 +211,29 @@ public void setCurrentMemberGuid(String currentMemberGuid) {
207211 }
208212
209213
214+ public WidgetRequest disableBackgroundAgg (Boolean disableBackgroundAgg ) {
215+
216+ this .disableBackgroundAgg = disableBackgroundAgg ;
217+ return this ;
218+ }
219+
220+ /**
221+ * Get disableBackgroundAgg
222+ * @return disableBackgroundAgg
223+ **/
224+ @ javax .annotation .Nullable
225+ @ ApiModelProperty (example = "false" , value = "" )
226+
227+ public Boolean getDisableBackgroundAgg () {
228+ return disableBackgroundAgg ;
229+ }
230+
231+
232+ public void setDisableBackgroundAgg (Boolean disableBackgroundAgg ) {
233+ this .disableBackgroundAgg = disableBackgroundAgg ;
234+ }
235+
236+
210237 public WidgetRequest disableInstitutionSearch (Boolean disableInstitutionSearch ) {
211238
212239 this .disableInstitutionSearch = disableInstitutionSearch ;
@@ -451,6 +478,7 @@ public boolean equals(Object o) {
451478 Objects .equals (this .currentInstitutionCode , widgetRequest .currentInstitutionCode ) &&
452479 Objects .equals (this .currentInstitutionGuid , widgetRequest .currentInstitutionGuid ) &&
453480 Objects .equals (this .currentMemberGuid , widgetRequest .currentMemberGuid ) &&
481+ Objects .equals (this .disableBackgroundAgg , widgetRequest .disableBackgroundAgg ) &&
454482 Objects .equals (this .disableInstitutionSearch , widgetRequest .disableInstitutionSearch ) &&
455483 Objects .equals (this .includeIdentity , widgetRequest .includeIdentity ) &&
456484 Objects .equals (this .includeTransactions , widgetRequest .includeTransactions ) &&
@@ -465,7 +493,7 @@ public boolean equals(Object o) {
465493
466494 @ Override
467495 public int hashCode () {
468- return Objects .hash (clientRedirectUrl , colorScheme , currentInstitutionCode , currentInstitutionGuid , currentMemberGuid , disableInstitutionSearch , includeIdentity , includeTransactions , isMobileWebview , mode , oauthReferralSource , uiMessageVersion , uiMessageWebviewUrlScheme , updateCredentials , widgetType );
496+ return Objects .hash (clientRedirectUrl , colorScheme , currentInstitutionCode , currentInstitutionGuid , currentMemberGuid , disableBackgroundAgg , disableInstitutionSearch , includeIdentity , includeTransactions , isMobileWebview , mode , oauthReferralSource , uiMessageVersion , uiMessageWebviewUrlScheme , updateCredentials , widgetType );
469497 }
470498
471499 @ Override
@@ -477,6 +505,7 @@ public String toString() {
477505 sb .append (" currentInstitutionCode: " ).append (toIndentedString (currentInstitutionCode )).append ("\n " );
478506 sb .append (" currentInstitutionGuid: " ).append (toIndentedString (currentInstitutionGuid )).append ("\n " );
479507 sb .append (" currentMemberGuid: " ).append (toIndentedString (currentMemberGuid )).append ("\n " );
508+ sb .append (" disableBackgroundAgg: " ).append (toIndentedString (disableBackgroundAgg )).append ("\n " );
480509 sb .append (" disableInstitutionSearch: " ).append (toIndentedString (disableInstitutionSearch )).append ("\n " );
481510 sb .append (" includeIdentity: " ).append (toIndentedString (includeIdentity )).append ("\n " );
482511 sb .append (" includeTransactions: " ).append (toIndentedString (includeTransactions )).append ("\n " );
0 commit comments