BREmailAccount

Objective-C

@interface BREmailAccount : NSObject

Swift

class BREmailAccount : NSObject

This class represents a user email account

  • The provider for this account

    Declaration

    Objective-C

    @property (nonatomic, readonly) BREReceiptProvider provider;

    Swift

    var provider: BREReceiptProvider { get }
  • The email address for this account

    Declaration

    Objective-C

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

    Swift

    var email: String { get }
  • It represents the logged in status of the account

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isAuthenticated;

    Swift

    var isAuthenticated: Bool { get }