BDFUser

Objective-C

@protocol BDFUser <NSObject>

Swift

protocol BDFUser : NSObjectProtocol

Represents a user in the bandyer’s platform.

Properties

  • The user’s alias (i.e. identifier).

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull alias;

    Swift

    var alias: String { get }
  • The user’s first name.

    Declaration

    Objective-C

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

    Swift

    var firstName: String? { get }
  • The user’s last name.

    Declaration

    Objective-C

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

    Swift

    var lastName: String? { get }
  • The user’s email address.

    Declaration

    Objective-C

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

    Swift

    var email: String? { get }
  • The user’s image filename.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSString *imageFilename;

    Swift

    var imageFilename: String? { get }