@@ -105,6 +105,10 @@ class AccountResponse
105105
106106 attr_accessor :premium_amount
107107
108+ attr_accessor :property_type
109+
110+ attr_accessor :property_type_name
111+
108112 attr_accessor :routing_number
109113
110114 attr_accessor :started_on
@@ -173,6 +177,8 @@ def self.attribute_map
173177 :'payment_due_at' => :'payment_due_at' ,
174178 :'payoff_balance' => :'payoff_balance' ,
175179 :'premium_amount' => :'premium_amount' ,
180+ :'property_type' => :'property_type' ,
181+ :'property_type_name' => :'property_type_name' ,
176182 :'routing_number' => :'routing_number' ,
177183 :'started_on' => :'started_on' ,
178184 :'subtype' => :'subtype' ,
@@ -239,6 +245,8 @@ def self.openapi_types
239245 :'payment_due_at' => :'String' ,
240246 :'payoff_balance' => :'Float' ,
241247 :'premium_amount' => :'Float' ,
248+ :'property_type' => :'Integer' ,
249+ :'property_type_name' => :'String' ,
242250 :'routing_number' => :'String' ,
243251 :'started_on' => :'String' ,
244252 :'subtype' => :'String' ,
@@ -299,6 +307,8 @@ def self.openapi_nullable
299307 :'payment_due_at' ,
300308 :'payoff_balance' ,
301309 :'premium_amount' ,
310+ :'property_type' ,
311+ :'property_type_name' ,
302312 :'routing_number' ,
303313 :'started_on' ,
304314 :'subtype' ,
@@ -507,6 +517,14 @@ def initialize(attributes = {})
507517 self . premium_amount = attributes [ :'premium_amount' ]
508518 end
509519
520+ if attributes . key? ( :'property_type' )
521+ self . property_type = attributes [ :'property_type' ]
522+ end
523+
524+ if attributes . key? ( :'property_type_name' )
525+ self . property_type_name = attributes [ :'property_type_name' ]
526+ end
527+
510528 if attributes . key? ( :'routing_number' )
511529 self . routing_number = attributes [ :'routing_number' ]
512530 end
@@ -611,6 +629,8 @@ def ==(o)
611629 payment_due_at == o . payment_due_at &&
612630 payoff_balance == o . payoff_balance &&
613631 premium_amount == o . premium_amount &&
632+ property_type == o . property_type &&
633+ property_type_name == o . property_type_name &&
614634 routing_number == o . routing_number &&
615635 started_on == o . started_on &&
616636 subtype == o . subtype &&
@@ -632,7 +652,7 @@ def eql?(o)
632652 # Calculates hash code according to all attributes.
633653 # @return [Integer] Hash code
634654 def hash
635- [ account_number , account_ownership , annuity_policy_to_date , annuity_provider , annuity_term_year , apr , apy , available_balance , available_credit , balance , cash_balance , cash_surrender_value , created_at , credit_limit , currency_code , day_payment_is_due , death_benefit , guid , holdings_value , id , imported_at , interest_rate , institution_code , insured_name , is_closed , is_hidden , is_manual , last_payment , last_payment_at , loan_amount , margin_balance , matures_on , member_guid , member_id , member_is_managed_by_user , metadata , minimum_balance , minimum_payment , name , nickname , original_balance , pay_out_amount , payment_due_at , payoff_balance , premium_amount , routing_number , started_on , subtype , today_ugl_amount , today_ugl_percentage , total_account_value , type , updated_at , user_guid , user_id ] . hash
655+ [ account_number , account_ownership , annuity_policy_to_date , annuity_provider , annuity_term_year , apr , apy , available_balance , available_credit , balance , cash_balance , cash_surrender_value , created_at , credit_limit , currency_code , day_payment_is_due , death_benefit , guid , holdings_value , id , imported_at , interest_rate , institution_code , insured_name , is_closed , is_hidden , is_manual , last_payment , last_payment_at , loan_amount , margin_balance , matures_on , member_guid , member_id , member_is_managed_by_user , metadata , minimum_balance , minimum_payment , name , nickname , original_balance , pay_out_amount , payment_due_at , payoff_balance , premium_amount , property_type , property_type_name , routing_number , started_on , subtype , today_ugl_amount , today_ugl_percentage , total_account_value , type , updated_at , user_guid , user_id ] . hash
636656 end
637657
638658 # Builds the object from hash
0 commit comments