RLMSyncUserInfo
@interface RLMSyncUserInfo : NSObject
A data object representing information about a user that was retrieved from a user lookup call.
-
An array of all the user accounts associated with this user.
Declaration
Objective-C
@property (readonly, nonatomic) NSArray<RLMSyncUserAccountInfo *> *_Nonnull accounts;
-
The identity issued to this user by the Realm Object Server.
Declaration
Objective-C
@property (readonly, nonatomic) NSString *_Nonnull identity;
-
Metadata about this user stored on the Realm Object Server.
Declaration
Objective-C
@property (readonly, nonatomic) NSDictionary<NSString *, NSString *> *_Nonnull metadata;
-
Whether the user is flagged on the Realm Object Server as an administrator.
Declaration
Objective-C
@property (readonly, nonatomic) BOOL isAdmin;