VOOSMPVerificationInfo.h
1 /************************************************************************
2 VisualOn Proprietary
3 Copyright (c) 2012-2016, VisualOn, Inc. All Rights Reserved
4 
5 All data and information contained in or disclosed by this document are
6 confidential and proprietary information of VisualOn, Inc, and all rights
7 therein are expressly reserved. By accepting this material, the recipient
8 agrees that this material and the information contained therein are held
9 in confidence and in trust. The material may only be used and/or disclosed
10 as authorized in a license agreement controlling such use and disclosure.
11 ************************************************************************/
12 
13 #import <Foundation/Foundation.h>
14 #import "VOOSMPType.h"
15 
16 EXPORT_API
17 @interface VOOSMPVerificationInfo : NSObject
18 {
19  VO_OSMP_SRC_VERIFICATION_FLAG _dataFlag;
21 
22  NSString* _responseString;
23 }
24 
36 @property (readwrite, assign, getter=getDataFlag) VO_OSMP_SRC_VERIFICATION_FLAG dataFlag;
37 
41 @property (readwrite, retain, getter=getVerificationString) NSString* verificationString;
42 
48 @property (readwrite, retain, getter=getResponseString) NSString* responseString;
49 
50 
59 - (id) init:(VO_OSMP_SRC_VERIFICATION_FLAG)dataFlag verificationString:(NSString *)verificationString;
60 
61 @end
NSString * responseString
Get authentication response string.
Definition: VOOSMPVerificationInfo.h:48
VO_OSMP_SRC_VERIFICATION_FLAG _dataFlag
Definition: VOOSMPVerificationInfo.h:19
VO_OSMP_SRC_VERIFICATION_FLAG dataFlag
Definition: VOOSMPVerificationInfo.h:36
NSString * _verificationString
Definition: VOOSMPVerificationInfo.h:20
NSString * verificationString
Get the verification string.
Definition: VOOSMPVerificationInfo.h:41
NSString * _responseString
Definition: VOOSMPVerificationInfo.h:22
Definition: VOOSMPVerificationInfo.h:17