RLMuserProfile

Objective-C


@interface RLMUserProfile : NSObject

Swift

@_nonSendable(_assumed) class RLMUserProfile : NSObject, @unchecked Sendable

特定のユーザーのプロファイル。

  • ユーザーの氏名。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *name;

    Swift

    var name: String? { get }
  • ユーザーのメールアドレス。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *email;

    Swift

    var email: String? { get }
  • ユーザーのプロファイル画像への URL 。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *pictureURL;

    Swift

    var pictureURL: String? { get }
  • ユーザーの名。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *firstName;

    Swift

    var firstName: String? { get }
  • ユーザーの姓。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *lastName;

    Swift

    var lastName: String? { get }
  • ユーザーの性。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *gender;

    Swift

    var gender: String? { get }
  • ユーザーの誕生日。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *birthday;

    Swift

    var birthday: String? { get }
  • ユーザーの最小経過時間。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *minAge;

    Swift

    var minAge: String? { get }
  • ユーザーの最大経過時間。

    宣言

    Objective-C

    @property (nonatomic, readonly, nullable) NSString *maxAge;

    Swift

    var maxAge: String? { get }
  • このユーザーに関連付けられたメタデータの BSON 辞書。

    宣言

    Objective-C

    @property (nonatomic, readonly) NS_REFINED_FOR_SWIFT NSDictionary *metadata;