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 / payment_facilitator.py
Size: Mime:
from braintree.attribute_getter import AttributeGetter
from braintree.sub_merchant import SubMerchant

class PaymentFacilitator(AttributeGetter):
    def __init__(self, attributes):
        AttributeGetter.__init__(self, attributes)
        if "sub_merchant" in attributes:
            self.sub_merchant = SubMerchant(attributes["sub_merchant"])