SBSDKBarcodeDocumentType
@interface SBSDKBarcodeDocumentType : NSObject
A helper class describing a barcode document type.
-
Name of the barcode document type.
Declaration
Objective-C
@property (nonatomic, readonly) NSString *_Nonnull name;
Swift
var name: String { get }
-
This class cannot be instantiated.
Declaration
Objective-C
- (nonnull instancetype)init;
-
Returns an array of all valid bar code document types.
Declaration
Objective-C
+ (nonnull NSArray<SBSDKBarcodeDocumentType *> *)allTypes;
Swift
class func allTypes() -> [SBSDKBarcodeDocumentType]