Page Summary
-
MLKPaymentCardEntityrepresents payment card information extracted from text. -
It provides access to the card's network type (e.g., Visa, Mastercard) and the card number in a standardized format.
-
The
initmethod is unavailable; presumably, instances are created through other means within the ML Kit framework.
MLKPaymentCardEntity
@interface MLKPaymentCardEntity : NSObjectA payment card entity extracted from text.
-
The payment card network.
Declaration
Objective-C
@property (nonatomic, readonly) MLKPaymentCardNetwork paymentCardNetwork; -
The payment card number in canonical form. For example,
4111111111111111.Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull paymentCardNumber; -
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init;