AI-generated Key Takeaways
-
MLKTrackingNumberEntity
represents a tracking number extracted from text. -
It provides the parcel carrier and the canonical form of the tracking number.
-
The
init
method is unavailable; presumably, you would obtain an instance through other means (e.g., as part of text recognition results).
MLKTrackingNumberEntity
@interface MLKTrackingNumberEntity : NSObject
A tracking number extracted from text.
-
The parcel tracking carrier.
Declaration
Objective-C
@property (nonatomic, readonly) MLKParcelTrackingCarrier parcelCarrier;
-
The parcel tracking number in canonical form. For example,
1Z204E380338943508
.Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull parcelTrackingNumber;
-
Unavailable.
Declaration
Objective-C
- (nonnull instancetype)init;