BTCardCapabilities.m 582 B

12345678910111213141516
  1. #if __has_include(<Braintree/BraintreeUnionPay.h>)
  2. #import <Braintree/BTCardCapabilities.h>
  3. #else
  4. #import <BraintreeUnionPay/BTCardCapabilities.h>
  5. #endif
  6. #pragma clang diagnostic push
  7. #pragma clang diagnostic ignored "-Weverything"
  8. @implementation BTCardCapabilities
  9. #pragma clang diagnostic pop
  10. - (NSString *)description {
  11. return [NSString stringWithFormat:@"%@ isUnionPay = %@, isDebit = %@, isSupported = %@, supportsTwoStepAuthAndCapture = %@", [super description], @(self.isUnionPay), @(self.isDebit), @(self.isSupported), @(self.supportsTwoStepAuthAndCapture)];
  12. }
  13. @end