Sha256: d1b84db2b374eed55e85460a01b467e5d955de7a3b248995b44cab3783f20c9d
Contents?: true
Size: 464 Bytes
Versions: 10
Compression:
Stored size: 464 Bytes
Contents
module Braintree class Transaction class UsBankAccountDetails # :nodoc: include BaseModule attr_reader :routing_number, :last_4, :account_type, :account_holder_name, :token, :image_url, :bank_name, :ach_mandate def initialize(attributes) set_instance_variables_from_hash attributes unless attributes.nil? @ach_mandate = attributes[:ach_mandate] ? AchMandate.new(attributes[:ach_mandate]) : nil end end end end
Version data entries
10 entries across 10 versions & 1 rubygems