-
@abstract The user identifier of the realm user.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull userIdentifier;Swift
var userIdentifier: String { get } -
@abstract The realm id.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull realmId;Swift
var realmId: NSNumber { get } -
@abstract The person id.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull personId;Swift
var personId: NSNumber { get } -
@abstract The user id.
Declaration
Objective-C
@property (nonatomic, strong, readonly) NSNumber *_Nonnull userId;Swift
var userId: NSNumber { get }
-
@abstract Fetches a list of realm users.
Declaration
Objective-C
+ (nonnull MNFJob *)fetchRealmUsersWithCompletion: (nullable MNFMultipleRealmUsersComletionHandler)completion;Swift
class func fetchRealmUsers(completion: MNFMultipleRealmUsersComletionHandler? = nil) -> MNFJobParameters
completionA completion block returning a list of realm users and an error.
Return Value
An MNFJob containing a list of realm users and an error.
-
@abstract Deletes a realm user.
Declaration
Objective-C
- (nonnull MNFJob *)deleteRealmUserWithCompletion: (nullable MNFErrorOnlyCompletionHandler)completion;Swift
func delete(completion: MNFErrorOnlyCompletionHandler? = nil) -> MNFJobParameters
completionA completion block returning an error.
Return Value
An MNFJob containing an error.
View on GitHub