There is no documentation for card.io that I can find, other than the original comments.
There is an enumeration for CardIOCreditCardType in the file CardIOCreditCardInfo.h.
typedef NS_ENUM(NSInteger, CardIOCreditCardType) {
CardIOCreditCardTypeUnknown __attribute__((deprecated("Use CardIOCreditCardTypeUnrecognized or CardIOCreditCardTypeAmbiguous instead."))) = 0,
CardIOCreditCardTypeUnrecognized = 0,
CardIOCreditCardTypeAmbiguous = 1,
CardIOCreditCardTypeAmex = '3',
CardIOCreditCardTypeJCB = 'J',
CardIOCreditCardTypeVisa = '4',
CardIOCreditCardTypeMastercard = '5',
CardIOCreditCardTypeDiscover = '6'
};
Does card.io only support automatic retrieval of Amex, JCB, Visa, Mastercard, and Discover card numbers?
Does card.io not support a card number for trading cards like Lowe's, Home Depot or Target?
Are there any other requirements for retrieving the card number, such as the card number to be embossed?
Is CardIOCreditCardTypeAmbiguous and Unrecognized used only for manually entered card numbers?
source
share