IDTech iOS/OSX SDK Guide  1.1.052
API reference for BTPay 200
 All Data Structures Functions Variables Properties Pages
CTLSResponse.h
1 //
2 // CTLSResponse.h
3 // IDTech
4 //
5 // Created by Randy Palermo on 10/30/14.
6 // Copyright (c) 2014 IDTech Products. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "IDTEMVData.h"
11 
12 @class CTLSResponse;
13 
17 @interface CTLSResponse : NSObject {
18  NSString* track1MSR;
19  NSString* track2MSR;
20  NSDictionary* clearingRecord;
21  NSDictionary* unencryptedTags;
22  NSDictionary* encryptedTags;
23  NSDictionary* maskedTags;
24 }
25 
29 -(void)clear;
33 + (CTLSResponse *)sharedController;
34 
35 
36 @property (nonatomic, strong) NSString* track1MSR;
37 @property (nonatomic, strong) NSString* track2MSR;
38 @property (nonatomic, strong) NSDictionary* clearingRecord;
39 @property (nonatomic, strong) NSDictionary* unencryptedTags;
40 @property (nonatomic, strong) NSDictionary* encryptedTags;
41 @property (nonatomic, strong) NSDictionary* maskedTags;
42 
43 @end
NSDictionary * maskedTags
EMV card data.
Definition: CTLSResponse.h:23
NSString * track2MSR
Track 2 data from MSR.
Definition: CTLSResponse.h:19
NSDictionary * clearingRecord
DE 055 data (if available) as a TLV data objects. The DE 055 data is the same data as is included in ...
Definition: CTLSResponse.h:20
NSDictionary * unencryptedTags
EMV card data.
Definition: CTLSResponse.h:21
NSString * track1MSR
Track 1 data from MSR.
Definition: CTLSResponse.h:18
Definition: CTLSResponse.h:17
NSDictionary * encryptedTags
EMV card data.
Definition: CTLSResponse.h:22