Repository URL to install this package:
|
Version:
4.36.0 ▾
|
braintree
/
enriched_customer_data.py
|
|---|
from braintree.resource import Resource
from braintree.venmo_profile_data import VenmoProfileData
class EnrichedCustomerData(Resource):
"""
A class representing Braintree EnrichedCustomerData object.
"""
def __init__(self, gateway, attributes):
Resource.__init__(self, gateway, attributes)
self.profile_data = VenmoProfileData(gateway, attributes.pop("profile_data"))