Sha256: fe5b7f040b77107fc71d00716072fb0b30139aba505cfacf276f8a15bbcb22b5
Contents?: true
Size: 568 Bytes
Versions: 20
Compression:
Stored size: 568 Bytes
Contents
module Braintree class UsBankAccountGateway def initialize(gateway) @gateway = gateway @config = gateway.config @config.assert_has_access_token_or_keys end def find(token) raise ArgumentError if token.nil? || token.to_s.strip == "" response = @config.http.get("#{@config.base_merchant_path}/payment_methods/us_bank_account/#{token}") UsBankAccount._new(@gateway, response[:us_bank_account]) rescue NotFoundError raise NotFoundError, "payment method with token #{token.inspect} not found" end end end
Version data entries
20 entries across 20 versions & 1 rubygems