@@ -211,6 +211,14 @@ public class AccountResponse {
211211 @ SerializedName (SERIALIZED_NAME_PREMIUM_AMOUNT )
212212 private BigDecimal premiumAmount ;
213213
214+ public static final String SERIALIZED_NAME_PROPERTY_TYPE = "property_type" ;
215+ @ SerializedName (SERIALIZED_NAME_PROPERTY_TYPE )
216+ private Integer propertyType ;
217+
218+ public static final String SERIALIZED_NAME_PROPERTY_TYPE_NAME = "property_type_name" ;
219+ @ SerializedName (SERIALIZED_NAME_PROPERTY_TYPE_NAME )
220+ private String propertyTypeName ;
221+
214222 public static final String SERIALIZED_NAME_ROUTING_NUMBER = "routing_number" ;
215223 @ SerializedName (SERIALIZED_NAME_ROUTING_NUMBER )
216224 private String routingNumber ;
@@ -1289,6 +1297,52 @@ public void setPremiumAmount(BigDecimal premiumAmount) {
12891297 }
12901298
12911299
1300+ public AccountResponse propertyType (Integer propertyType ) {
1301+
1302+ this .propertyType = propertyType ;
1303+ return this ;
1304+ }
1305+
1306+ /**
1307+ * Get propertyType
1308+ * @return propertyType
1309+ **/
1310+ @ javax .annotation .Nullable
1311+ @ ApiModelProperty (example = "1" , value = "" )
1312+
1313+ public Integer getPropertyType () {
1314+ return propertyType ;
1315+ }
1316+
1317+
1318+ public void setPropertyType (Integer propertyType ) {
1319+ this .propertyType = propertyType ;
1320+ }
1321+
1322+
1323+ public AccountResponse propertyTypeName (String propertyTypeName ) {
1324+
1325+ this .propertyTypeName = propertyTypeName ;
1326+ return this ;
1327+ }
1328+
1329+ /**
1330+ * Get propertyTypeName
1331+ * @return propertyTypeName
1332+ **/
1333+ @ javax .annotation .Nullable
1334+ @ ApiModelProperty (example = "VEHICLE" , value = "" )
1335+
1336+ public String getPropertyTypeName () {
1337+ return propertyTypeName ;
1338+ }
1339+
1340+
1341+ public void setPropertyTypeName (String propertyTypeName ) {
1342+ this .propertyTypeName = propertyTypeName ;
1343+ }
1344+
1345+
12921346 public AccountResponse routingNumber (String routingNumber ) {
12931347
12941348 this .routingNumber = routingNumber ;
@@ -1573,6 +1627,8 @@ public boolean equals(Object o) {
15731627 Objects .equals (this .paymentDueAt , accountResponse .paymentDueAt ) &&
15741628 Objects .equals (this .payoffBalance , accountResponse .payoffBalance ) &&
15751629 Objects .equals (this .premiumAmount , accountResponse .premiumAmount ) &&
1630+ Objects .equals (this .propertyType , accountResponse .propertyType ) &&
1631+ Objects .equals (this .propertyTypeName , accountResponse .propertyTypeName ) &&
15761632 Objects .equals (this .routingNumber , accountResponse .routingNumber ) &&
15771633 Objects .equals (this .startedOn , accountResponse .startedOn ) &&
15781634 Objects .equals (this .subtype , accountResponse .subtype ) &&
@@ -1591,7 +1647,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
15911647
15921648 @ Override
15931649 public int hashCode () {
1594- return Objects .hash (accountNumber , accountOwnership , annuityPolicyToDate , annuityProvider , annuityTermYear , apr , apy , availableBalance , availableCredit , balance , cashBalance , cashSurrenderValue , createdAt , creditLimit , currencyCode , dayPaymentIsDue , deathBenefit , guid , holdingsValue , id , importedAt , interestRate , institutionCode , insuredName , isClosed , isHidden , isManual , lastPayment , lastPaymentAt , loanAmount , marginBalance , maturesOn , memberGuid , memberId , memberIsManagedByUser , metadata , minimumBalance , minimumPayment , name , nickname , originalBalance , payOutAmount , paymentDueAt , payoffBalance , premiumAmount , routingNumber , startedOn , subtype , todayUglAmount , todayUglPercentage , totalAccountValue , type , updatedAt , userGuid , userId );
1650+ return Objects .hash (accountNumber , accountOwnership , annuityPolicyToDate , annuityProvider , annuityTermYear , apr , apy , availableBalance , availableCredit , balance , cashBalance , cashSurrenderValue , createdAt , creditLimit , currencyCode , dayPaymentIsDue , deathBenefit , guid , holdingsValue , id , importedAt , interestRate , institutionCode , insuredName , isClosed , isHidden , isManual , lastPayment , lastPaymentAt , loanAmount , marginBalance , maturesOn , memberGuid , memberId , memberIsManagedByUser , metadata , minimumBalance , minimumPayment , name , nickname , originalBalance , payOutAmount , paymentDueAt , payoffBalance , premiumAmount , propertyType , propertyTypeName , routingNumber , startedOn , subtype , todayUglAmount , todayUglPercentage , totalAccountValue , type , updatedAt , userGuid , userId );
15951651 }
15961652
15971653 private static <T > int hashCodeNullable (JsonNullable <T > a ) {
@@ -1650,6 +1706,8 @@ public String toString() {
16501706 sb .append (" paymentDueAt: " ).append (toIndentedString (paymentDueAt )).append ("\n " );
16511707 sb .append (" payoffBalance: " ).append (toIndentedString (payoffBalance )).append ("\n " );
16521708 sb .append (" premiumAmount: " ).append (toIndentedString (premiumAmount )).append ("\n " );
1709+ sb .append (" propertyType: " ).append (toIndentedString (propertyType )).append ("\n " );
1710+ sb .append (" propertyTypeName: " ).append (toIndentedString (propertyTypeName )).append ("\n " );
16531711 sb .append (" routingNumber: " ).append (toIndentedString (routingNumber )).append ("\n " );
16541712 sb .append (" startedOn: " ).append (toIndentedString (startedOn )).append ("\n " );
16551713 sb .append (" subtype: " ).append (toIndentedString (subtype )).append ("\n " );
0 commit comments