Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
LocalTransactionParams.h
Go to the documentation of this file.
1
2//
3// Copyright (c) since 1999. VASCO DATA SECURITY
4// All rights reserved. http://www.vasco.com
5//
7
8#import <Foundation/Foundation.h>
9#import <MSSOrchestration/CryptoAppIndex.h>
10#import <MSSOrchestration/ProtectionType.h>
11NS_ASSUME_NONNULL_BEGIN
12
13@protocol LocalTransactionDelegate;
15
19NS_REFINED_FOR_SWIFT
20@interface LocalTransactionParams : NSObject
21
25@property (nonatomic, strong) OrchestrationUser* orchestrationUser;
26
30@property (nonatomic) CryptoAppIndex cryptoAppIndex;
31
35@property (nonatomic, strong) NSArray<NSString *> *dataFields;
36
40@property (nonatomic) ProtectionType protectionType;
41
45@property (nonatomic, weak) id<LocalTransactionDelegate> localTransactionDelegate;
46
47@end
48
49NS_ASSUME_NONNULL_END
CryptoAppIndex
Definition CryptoAppIndex.h:15
ProtectionType
Definition ProtectionType.h:12
Definition LocalTransactionParams.h:21
OrchestrationUser * orchestrationUser
Definition LocalTransactionParams.h:25
CryptoAppIndex cryptoAppIndex
Definition LocalTransactionParams.h:30
ProtectionType protectionType
Definition LocalTransactionParams.h:40
NSArray< NSString * > * dataFields
Definition LocalTransactionParams.h:35
id< LocalTransactionDelegate > localTransactionDelegate
Definition LocalTransactionParams.h:45
Definition OrchestrationUser.h:17