BTCardCapabilities.m 352 B

123456789
  1. #import "BTCardCapabilities.h"
  2. @implementation BTCardCapabilities
  3. - (NSString *)description {
  4. return [NSString stringWithFormat:@"%@ isUnionPay = %@, isDebit = %@, isSupported = %@, supportsTwoStepAuthAndCapture = %@", [super description], @(self.isUnionPay), @(self.isDebit), @(self.isSupported), @(self.supportsTwoStepAuthAndCapture)];
  5. }
  6. @end