Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
braintree / us_bank_account_gateway.py
Size: Mime:
import braintree
from braintree.us_bank_account import UsBankAccount
from braintree.exceptions.not_found_error import NotFoundError

class UsBankAccountGateway(object):
    def __init__(self, gateway):
        self.gateway = gateway
        self.config = gateway.config

    def find(self, us_bank_account_token):
        try:
            if us_bank_account_token is None or us_bank_account_token.strip() == "":
                raise NotFoundError()

            response = self.config.http().get(self.config.base_merchant_path() + "/payment_methods/us_bank_account/" + us_bank_account_token)
            if "us_bank_account" in response:
                return UsBankAccount(self.gateway, response["us_bank_account"])
        except NotFoundError:
            raise NotFoundError("US bank account with token " + repr(us_bank_account_token) + " not found")