AI-generated Key Takeaways
- 
          WalletConstants.CardNetworkis an annotation that represents credit card networks supported by different APIs.
- 
          Available card networks include AMEX, DISCOVER, JCB, MASTERCARD, RUPAY, VISA, INTERAC, and OTHER. 
- 
          When used with Google Pay, INTERAC uses EMV cryptograms instead of 3DS cryptograms. 
- 
          The individual card network constants within WalletConstants.CardNetworkare deprecated and users should use the corresponding constants fromWalletConstantsinstead.
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.