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