8#import <Foundation/Foundation.h>
11@protocol UserInformationProtocol;
19@protocol UserManagerProtocol <NSObject>
27- (BOOL)isUserActivated:(
OrchestrationUser *)orchestrationUser error:(NSError **)error NS_SWIFT_NOTHROW;
35- (id<UserInformationProtocol> _Nullable)userInformationForOrchestrationUser:(
OrchestrationUser *)orchestrationUser error:(NSError **)error;
43- (BOOL)deleteUserWithOrchestrationUser:(
OrchestrationUser *)orchestrationUser error:(NSError **)error;
50- (BOOL)deleteAllOrchestrationUsersWithError:(NSError **)error;
56- (NSArray<
OrchestrationUser *> *)users __deprecated_msg("use [UserManagerProtocol usersWithError:] to have the error");
Definition OrchestrationUser.h:17