BTCardCapabilities.h 598 B

12345678910111213141516171819202122232425262728
  1. #import <Foundation/Foundation.h>
  2. /**
  3. Contains information about a card's capabilities
  4. */
  5. @interface BTCardCapabilities : NSObject
  6. /**
  7. Indicates whether the card is Union Pay.
  8. */
  9. @property (nonatomic, assign) BOOL isUnionPay;
  10. /**
  11. Indicates whether the card is debit.
  12. */
  13. @property (nonatomic, assign) BOOL isDebit;
  14. /**
  15. Indicates whether the card supports two step authentication and capture.
  16. */
  17. @property (nonatomic, assign) BOOL supportsTwoStepAuthAndCapture;
  18. /**
  19. Indicates if the card is supported for this merchant account.
  20. */
  21. @property (nonatomic, assign) BOOL isSupported;
  22. @end