@@ -261,6 +261,10 @@ public class AccountResponse {
261261 @ SerializedName (SERIALIZED_NAME_TOTAL_ACCOUNT_VALUE )
262262 private BigDecimal totalAccountValue ;
263263
264+ public static final String SERIALIZED_NAME_TOTAL_ACCOUNT_VALUE_UGL = "total_account_value_ugl" ;
265+ @ SerializedName (SERIALIZED_NAME_TOTAL_ACCOUNT_VALUE_UGL )
266+ private BigDecimal totalAccountValueUgl ;
267+
264268 public static final String SERIALIZED_NAME_TYPE = "type" ;
265269 @ SerializedName (SERIALIZED_NAME_TYPE )
266270 private String type ;
@@ -1372,6 +1376,27 @@ public void setTotalAccountValue(BigDecimal totalAccountValue) {
13721376 }
13731377
13741378
1379+ public AccountResponse totalAccountValueUgl (BigDecimal totalAccountValueUgl ) {
1380+
1381+ this .totalAccountValueUgl = totalAccountValueUgl ;
1382+ return this ;
1383+ }
1384+
1385+ /**
1386+ * Get totalAccountValueUgl
1387+ * @return totalAccountValueUgl
1388+ **/
1389+ @ javax .annotation .Nullable
1390+ public BigDecimal getTotalAccountValueUgl () {
1391+ return totalAccountValueUgl ;
1392+ }
1393+
1394+
1395+ public void setTotalAccountValueUgl (BigDecimal totalAccountValueUgl ) {
1396+ this .totalAccountValueUgl = totalAccountValueUgl ;
1397+ }
1398+
1399+
13751400 public AccountResponse type (String type ) {
13761401
13771402 this .type = type ;
@@ -1518,6 +1543,7 @@ public boolean equals(Object o) {
15181543 Objects .equals (this .todayUglAmount , accountResponse .todayUglAmount ) &&
15191544 Objects .equals (this .todayUglPercentage , accountResponse .todayUglPercentage ) &&
15201545 Objects .equals (this .totalAccountValue , accountResponse .totalAccountValue ) &&
1546+ Objects .equals (this .totalAccountValueUgl , accountResponse .totalAccountValueUgl ) &&
15211547 Objects .equals (this .type , accountResponse .type ) &&
15221548 Objects .equals (this .updatedAt , accountResponse .updatedAt ) &&
15231549 Objects .equals (this .userGuid , accountResponse .userGuid ) &&
@@ -1530,7 +1556,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
15301556
15311557 @ Override
15321558 public int hashCode () {
1533- return Objects .hash (accountNumber , accountOwnership , annuityPolicyToDate , annuityProvider , annuityTermYear , apr , apy , availableBalance , availableCredit , balance , cashBalance , cashSurrenderValue , createdAt , creditLimit , currencyCode , dayPaymentIsDue , deathBenefit , guid , holdingsValue , id , importedAt , institutionCode , insuredName , interestRate , isClosed , isHidden , isManual , lastPayment , lastPaymentAt , loanAmount , marginBalance , maturesOn , memberGuid , memberId , memberIsManagedByUser , metadata , minimumBalance , minimumPayment , name , nickname , originalBalance , payOutAmount , paymentDueAt , payoffBalance , premiumAmount , propertyType , routingNumber , startedOn , subtype , todayUglAmount , todayUglPercentage , totalAccountValue , type , updatedAt , userGuid , userId );
1559+ return Objects .hash (accountNumber , accountOwnership , annuityPolicyToDate , annuityProvider , annuityTermYear , apr , apy , availableBalance , availableCredit , balance , cashBalance , cashSurrenderValue , createdAt , creditLimit , currencyCode , dayPaymentIsDue , deathBenefit , guid , holdingsValue , id , importedAt , institutionCode , insuredName , interestRate , isClosed , isHidden , isManual , lastPayment , lastPaymentAt , loanAmount , marginBalance , maturesOn , memberGuid , memberId , memberIsManagedByUser , metadata , minimumBalance , minimumPayment , name , nickname , originalBalance , payOutAmount , paymentDueAt , payoffBalance , premiumAmount , propertyType , routingNumber , startedOn , subtype , todayUglAmount , todayUglPercentage , totalAccountValue , totalAccountValueUgl , type , updatedAt , userGuid , userId );
15341560 }
15351561
15361562 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -1596,6 +1622,7 @@ public String toString() {
15961622 sb .append (" todayUglAmount: " ).append (toIndentedString (todayUglAmount )).append ("\n " );
15971623 sb .append (" todayUglPercentage: " ).append (toIndentedString (todayUglPercentage )).append ("\n " );
15981624 sb .append (" totalAccountValue: " ).append (toIndentedString (totalAccountValue )).append ("\n " );
1625+ sb .append (" totalAccountValueUgl: " ).append (toIndentedString (totalAccountValueUgl )).append ("\n " );
15991626 sb .append (" type: " ).append (toIndentedString (type )).append ("\n " );
16001627 sb .append (" updatedAt: " ).append (toIndentedString (updatedAt )).append ("\n " );
16011628 sb .append (" userGuid: " ).append (toIndentedString (userGuid )).append ("\n " );
@@ -1674,6 +1701,7 @@ private String toIndentedString(Object o) {
16741701 openapiFields .add ("today_ugl_amount" );
16751702 openapiFields .add ("today_ugl_percentage" );
16761703 openapiFields .add ("total_account_value" );
1704+ openapiFields .add ("total_account_value_ugl" );
16771705 openapiFields .add ("type" );
16781706 openapiFields .add ("updated_at" );
16791707 openapiFields .add ("user_guid" );
0 commit comments