Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
OrchestrationUser.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
10
15NS_REFINED_FOR_SWIFT
16@interface OrchestrationUser : NSObject
17
18- (instancetype)init NS_UNAVAILABLE;
19+ (instancetype)new NS_UNAVAILABLE;
20
21- (instancetype)initWithIdentifier:(NSString *)identifier domain:(NSString *)domain;
22- (instancetype)initWithIdentifier:(NSString *)identifier;
23
28@property (nonatomic, strong) NSString *identifier;
29
34@property (nonatomic, strong) NSString *domain;
35
36@end
37
38NS_ASSUME_NONNULL_END
Definition OrchestrationUser.h:17
NSString * domain
Definition OrchestrationUser.h:34
NSString * identifier
Definition OrchestrationUser.h:28