BTConfiguration+LocalPayment.m 236 B

12345678910
  1. #import "BTConfiguration+LocalPayment.h"
  2. @implementation BTConfiguration (LocalPayment)
  3. - (BOOL)isLocalPaymentEnabled {
  4. // Local Payments are enabled when PayPal is enabled
  5. return [self.json[@"paypalEnabled"] isTrue];
  6. }
  7. @end