lib/braintree/us_bank_account.rb in braintree-2.80.1 vs lib/braintree/us_bank_account.rb in braintree-2.81.0
- old
+ new
@@ -1,9 +1,17 @@
module Braintree
class UsBankAccount
include BaseModule
- attr_reader :routing_number, :last_4, :account_type, :account_holder_name, :token, :image_url, :bank_name, :ach_mandate, :default
+ attr_reader :account_holder_name
+ attr_reader :account_type
+ attr_reader :ach_mandate
+ attr_reader :bank_name
+ attr_reader :default
+ attr_reader :image_url
+ attr_reader :last_4
+ attr_reader :routing_number
+ attr_reader :token
def initialize(gateway, attributes) # :nodoc:
@gateway = gateway
set_instance_variables_from_hash(attributes)
@ach_mandate = AchMandate.new(attributes[:ach_mandate]) if attributes[:ach_mandate]