BTConfiguration+LocalPayment.h 368 B

1234567891011121314151617
  1. #if __has_include("BraintreeCore.h")
  2. #import "BraintreeCore.h"
  3. #else
  4. #import <BraintreeCore/BraintreeCore.h>
  5. #endif
  6. /**
  7. Category on BTConfiguration for LocalPayment
  8. */
  9. @interface BTConfiguration (LocalPayment)
  10. /**
  11. Indicates whether Local Payments are enabled for the merchant account.
  12. */
  13. @property (nonatomic, readonly, assign) BOOL isLocalPaymentEnabled;
  14. @end