Repository URL to install this package:
|
Version:
4.36.0 ▾
|
braintree
/
us_bank_account_gateway.py
|
|---|
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")