Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
CDDCMessageParams.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>
9NS_ASSUME_NONNULL_BEGIN
11
12NS_REFINED_FOR_SWIFT
13@interface CDDCMessageParams : NSObject
14
18@property (nonatomic, strong) OrchestrationUser *orchestrationUser;
19
23@property (nonatomic, copy) NSString *eventName;
24
25@property (nonatomic, copy) NSString *applicationData;
26
30@property (nonatomic) BOOL encrypted;
31
32- (instancetype)initWithOrchestrationUser:(OrchestrationUser *)orchestrationUser
33 eventName:(NSString *)eventName
34 applicationData:(NSString *)applicationData
35 encrypted:(BOOL)encrypted;
36@end
37
38NS_ASSUME_NONNULL_END
Definition CDDCMessageParams.h:14
OrchestrationUser * orchestrationUser
Definition CDDCMessageParams.h:18
BOOL encrypted
Definition CDDCMessageParams.h:30
NSString * applicationData
Definition CDDCMessageParams.h:25
NSString * eventName
Definition CDDCMessageParams.h:23
Definition OrchestrationUser.h:17