Deprecation warning

Please note that this is outdated documentation for an older release of the Scandit Barcode Scanner SDK.

We are deprecating the 5.x API on all platforms (except Linux). Release 5.19 in April 2021 will be our final. Applications running 5.x will continue to work, and we will continue to release critical bug fixes and security patches only, for one year. We encourage you to migrate to 6.x and take advantage of our latest / advanced features and improved performance.

You'll find the updated documentation at: Data Capture SDK Documentation for iOS

SBSParserField.h
Go to the documentation of this file.
1 //------------------------------------------------------------------------------------------------//
2 // This file is part of the Scandit Parsing Library //
3 // //
4 // Copyright (c) 2016-2017 Scandit AG. All rights reserved //
5 //------------------------------------------------------------------------------------------------//
6 
7 #import <Foundation/Foundation.h>
8 
14 @interface SBSParserField : NSObject
15 
21 @property (nonatomic, readonly, nonnull) NSString *name;
22 
31 @property (nonatomic, readonly, nullable) id parsed;
32 
38 @property (nonatomic, readonly, nonnull) NSString *rawString;
39 
40 @end
A particular parsed field.
Definition: SBSParserField.h:14
NSString * name
The name of the field.
Definition: SBSParserField.h:21
NSString * rawString
The rawString of the field, e.g. as it appears in the data.
Definition: SBSParserField.h:38
id parsed
The parsed value of the field.
Definition: SBSParserField.h:31