BTConfiguration+PayPal.h 507 B

12345678910111213141516171819202122
  1. #if __has_include("BraintreeCore.h")
  2. #import "BTConfiguration.h"
  3. #else
  4. #import <BraintreeCore/BTConfiguration.h>
  5. #endif
  6. /**
  7. BTConfiguration category for PayPal.
  8. */
  9. @interface BTConfiguration (PayPal)
  10. /**
  11. Indicates whether PayPal is enabled for the merchant account.
  12. */
  13. @property (nonatomic, readonly, assign) BOOL isPayPalEnabled;
  14. /**
  15. Indicates whether PayPal billing agreements are enabled for the merchant account.
  16. */
  17. @property (nonatomic, readonly, assign) BOOL isBillingAgreementsEnabled;
  18. @end