Page Summary
-
MLKPaymentCardNetworkis an enum that defines the supported payment card networks. -
It includes a variety of networks such as Visa, Mastercard, Amex, Discover, Diners Club, JCB, Maestro, Mir, Troy, UnionPay and InterPayment.
-
The enum also provides an
MLKPaymentCardNetworkUnknowncase for when the network cannot be identified. -
Each network is represented by a specific case within the
MLKPaymentCardNetworkenum. -
This enum is used for payment card detection and processing purposes within the relevant framework.
MLKPaymentCardNetwork
enum MLKPaymentCardNetwork {}@enum PaymentCardNetwork The supported payment card networks that can be detected.
-
The payment card network is unknown.
Declaration
Objective-C
MLKPaymentCardNetworkUnknown = 0 -
The payment card is part of the Amex network.
Declaration
Objective-C
MLKPaymentCardNetworkAmex -
The payment card is part of the DinersClub network.
Declaration
Objective-C
MLKPaymentCardNetworkDinersClub -
The payment card is part of the Discover network.
Declaration
Objective-C
MLKPaymentCardNetworkDiscover -
The payment card is part of the InterPayment network.
Declaration
Objective-C
MLKPaymentCardNetworkInterPayment -
The payment card is part of the JCB network.
Declaration
Objective-C
MLKPaymentCardNetworkJCB -
The payment card is part of the Maestro network.
Declaration
Objective-C
MLKPaymentCardNetworkMaestro -
The payment card is part of the Mastercard network.
Declaration
Objective-C
MLKPaymentCardNetworkMastercard -
The payment card is part of the Mir network.
Declaration
Objective-C
MLKPaymentCardNetworkMir -
The payment card is part of the Troy network.
Declaration
Objective-C
MLKPaymentCardNetworkTroy -
The payment card is part of the Unionpay network.
Declaration
Objective-C
MLKPaymentCardNetworkUnionpay -
The payment card is part of the Visa network.
Declaration
Objective-C
MLKPaymentCardNetworkVisa