Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
ChangePasswordParams.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>
10NS_ASSUME_NONNULL_BEGIN
11
12@protocol ChangePasswordDelegate;
14
19NS_REFINED_FOR_SWIFT
20@interface ChangePasswordParams : NSObject
21
26@property (nonatomic, strong) OrchestrationUser *orchestrationUser;
27
32@property (nonatomic, weak) id<ChangePasswordDelegate> changePasswordDelegate;
33
38@property (nonatomic) CryptoAppIndex cryptoAppIndex;
39
40@end
41
42NS_ASSUME_NONNULL_END
CryptoAppIndex
Definition CryptoAppIndex.h:15
Definition ChangePasswordParams.h:21
OrchestrationUser * orchestrationUser
Definition ChangePasswordParams.h:26
CryptoAppIndex cryptoAppIndex
Definition ChangePasswordParams.h:38
id< ChangePasswordDelegate > changePasswordDelegate
Definition ChangePasswordParams.h:32
Definition OrchestrationUser.h:17