UNPKG

@adyen/react-native

Version:

Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native

17 lines (13 loc) 246 B
/** * General type for card. */ export class Card { /** PAN of card. */ number?: string; /** Month in format MM. */ expiryMonth?: string; /** Year in format YYYY. */ expiryYear?: string; /** 3 or 4 digits. */ cvv?: string; }