Repository URL to install this package:
|
Version:
4.36.0 ▾
|
braintree
/
local_payment_funded.py
|
|---|
from braintree.resource import Resource
from braintree.transaction import Transaction
class LocalPaymentFunded(Resource):
"""
A class representing Braintree LocalPaymentFunded webhook.
"""
def __init__(self, gateway, attributes):
Resource.__init__(self, gateway, attributes)
self.transaction = Transaction(gateway, attributes.pop("transaction"))