AI-generated Key Takeaways
-
WalletConstants.CardNetwork
defines an annotation for specifying supported credit card networks within different APIs. -
Supported networks include Amex, Discover, JCB, Mastercard, Visa, Interac, and other.
-
When using Google Pay, Interac utilizes EMV cryptograms instead of 3DS cryptograms for payment credentials.
-
The constants such as
AMEX
,DISCOVER
,INTERAC
, etc., are deprecated; use their correspondingWalletConstants.CARD_NETWORK_*
counterparts instead.
Credit card networks. Different APIs may support only a subset of these.
Available options:
WalletConstants.CARD_NETWORK_AMEX
WalletConstants.CARD_NETWORK_DISCOVER
WalletConstants.CARD_NETWORK_JCB
WalletConstants.CARD_NETWORK_MASTERCARD
WalletConstants.CARD_NETWORK_RUPAY
WalletConstants.CARD_NETWORK_VISA
WalletConstants.CARD_NETWORK_INTERAC
WalletConstants.CARD_NETWORK_OTHER
When used with Google Pay, the following networks use EMV cryptograms instead of 3DS cryptograms as part of the payment credentials:
See Also
Constant Summary
int | AMEX | Deprecated. |
int | DISCOVER | Deprecated. |
int | INTERAC | Deprecated. |
int | JCB | Deprecated. |
int | MASTERCARD | Deprecated. |
int | OTHER | Deprecated. |
int | VISA | Deprecated. |
Inherited Method Summary
Constants
public static final int AMEX
Deprecated. Use
WalletConstants.CARD_NETWORK_AMEX
instead.
public static final int DISCOVER
Deprecated. Use
WalletConstants.CARD_NETWORK_DISCOVER
instead.
public static final int INTERAC
Deprecated. Use
WalletConstants.CARD_NETWORK_INTERAC
instead.
public static final int JCB
Deprecated. Use
WalletConstants.CARD_NETWORK_JCB
instead.
public static final int MASTERCARD
Deprecated. Use
WalletConstants.CARD_NETWORK_MASTERCARD
instead.
public static final int OTHER
Deprecated. Use
WalletConstants.CARD_NETWORK_OTHER
instead.
public static final int VISA
Deprecated. Use
WalletConstants.CARD_NETWORK_VISA
instead.