@@ -121,6 +121,10 @@ public class AccountResponse {
121121 @ SerializedName (SERIALIZED_NAME_DEATH_BENEFIT )
122122 private Integer deathBenefit ;
123123
124+ public static final String SERIALIZED_NAME_FEDERAL_INSURANCE_STATUS = "federal_insurance_status" ;
125+ @ SerializedName (SERIALIZED_NAME_FEDERAL_INSURANCE_STATUS )
126+ private String federalInsuranceStatus ;
127+
124128 public static final String SERIALIZED_NAME_GUID = "guid" ;
125129 @ SerializedName (SERIALIZED_NAME_GUID )
126130 private String guid ;
@@ -645,6 +649,27 @@ public void setDeathBenefit(Integer deathBenefit) {
645649 }
646650
647651
652+ public AccountResponse federalInsuranceStatus (String federalInsuranceStatus ) {
653+
654+ this .federalInsuranceStatus = federalInsuranceStatus ;
655+ return this ;
656+ }
657+
658+ /**
659+ * Get federalInsuranceStatus
660+ * @return federalInsuranceStatus
661+ **/
662+ @ javax .annotation .Nullable
663+ public String getFederalInsuranceStatus () {
664+ return federalInsuranceStatus ;
665+ }
666+
667+
668+ public void setFederalInsuranceStatus (String federalInsuranceStatus ) {
669+ this .federalInsuranceStatus = federalInsuranceStatus ;
670+ }
671+
672+
648673 public AccountResponse guid (String guid ) {
649674
650675 this .guid = guid ;
@@ -1533,6 +1558,7 @@ public boolean equals(Object o) {
15331558 Objects .equals (this .currencyCode , accountResponse .currencyCode ) &&
15341559 Objects .equals (this .dayPaymentIsDue , accountResponse .dayPaymentIsDue ) &&
15351560 Objects .equals (this .deathBenefit , accountResponse .deathBenefit ) &&
1561+ Objects .equals (this .federalInsuranceStatus , accountResponse .federalInsuranceStatus ) &&
15361562 Objects .equals (this .guid , accountResponse .guid ) &&
15371563 Objects .equals (this .holdingsValue , accountResponse .holdingsValue ) &&
15381564 Objects .equals (this .id , accountResponse .id ) &&
@@ -1582,7 +1608,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
15821608
15831609 @ Override
15841610 public int hashCode () {
1585- 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 , statementBalance , subtype , todayUglAmount , todayUglPercentage , totalAccountValue , totalAccountValueUgl , type , updatedAt , userGuid , userId );
1611+ return Objects .hash (accountNumber , accountOwnership , annuityPolicyToDate , annuityProvider , annuityTermYear , apr , apy , availableBalance , availableCredit , balance , cashBalance , cashSurrenderValue , createdAt , creditLimit , currencyCode , dayPaymentIsDue , deathBenefit , federalInsuranceStatus , 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 , statementBalance , subtype , todayUglAmount , todayUglPercentage , totalAccountValue , totalAccountValueUgl , type , updatedAt , userGuid , userId );
15861612 }
15871613
15881614 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -1613,6 +1639,7 @@ public String toString() {
16131639 sb .append (" currencyCode: " ).append (toIndentedString (currencyCode )).append ("\n " );
16141640 sb .append (" dayPaymentIsDue: " ).append (toIndentedString (dayPaymentIsDue )).append ("\n " );
16151641 sb .append (" deathBenefit: " ).append (toIndentedString (deathBenefit )).append ("\n " );
1642+ sb .append (" federalInsuranceStatus: " ).append (toIndentedString (federalInsuranceStatus )).append ("\n " );
16161643 sb .append (" guid: " ).append (toIndentedString (guid )).append ("\n " );
16171644 sb .append (" holdingsValue: " ).append (toIndentedString (holdingsValue )).append ("\n " );
16181645 sb .append (" id: " ).append (toIndentedString (id )).append ("\n " );
@@ -1693,6 +1720,7 @@ private String toIndentedString(Object o) {
16931720 openapiFields .add ("currency_code" );
16941721 openapiFields .add ("day_payment_is_due" );
16951722 openapiFields .add ("death_benefit" );
1723+ openapiFields .add ("federal_insurance_status" );
16961724 openapiFields .add ("guid" );
16971725 openapiFields .add ("holdings_value" );
16981726 openapiFields .add ("id" );
@@ -1778,6 +1806,9 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
17781806 if ((jsonObj .get ("currency_code" ) != null && !jsonObj .get ("currency_code" ).isJsonNull ()) && !jsonObj .get ("currency_code" ).isJsonPrimitive ()) {
17791807 throw new IllegalArgumentException (String .format ("Expected the field `currency_code` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("currency_code" ).toString ()));
17801808 }
1809+ if ((jsonObj .get ("federal_insurance_status" ) != null && !jsonObj .get ("federal_insurance_status" ).isJsonNull ()) && !jsonObj .get ("federal_insurance_status" ).isJsonPrimitive ()) {
1810+ throw new IllegalArgumentException (String .format ("Expected the field `federal_insurance_status` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("federal_insurance_status" ).toString ()));
1811+ }
17811812 if ((jsonObj .get ("guid" ) != null && !jsonObj .get ("guid" ).isJsonNull ()) && !jsonObj .get ("guid" ).isJsonPrimitive ()) {
17821813 throw new IllegalArgumentException (String .format ("Expected the field `guid` to be a primitive type in the JSON string but got `%s`" , jsonObj .get ("guid" ).toString ()));
17831814 }
0 commit comments