123456789101112131415161718192021222324252627282930313233343536373839 |
- #import <CoreGraphics/CoreGraphics.h>
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- NS_SWIFT_NAME(VisionImageLabel)
- @interface FIRVisionImageLabel : NSObject
- @property(nonatomic, copy, readonly) NSString *text;
- @property(nonatomic, readonly, nullable) NSNumber *confidence;
- @property(nonatomic, copy, readonly, nullable) NSString *entityID;
- - (instancetype)init NS_UNAVAILABLE;
- @end
- NS_ASSUME_NONNULL_END
|