Skip to main content

BREmailAccount

Represents a user email account. Inherits from NSObject.

SDK Version: 3.2.0

Declaration

@interface BREmailAccount : NSObject
class BREmailAccount : NSObject

Quick Reference

Properties

PropertyDescription
providerThe email provider for this account
emailThe email address for this account
isAuthenticatedWhether the account is currently logged in

Properties

provider (read-only)

@property (nonatomic, readonly) BREReceiptProvider provider;
var provider: BREReceiptProvider { get }

The provider for this account. See BREReceiptProvider.


email (read-only)

@property (nonatomic, strong, readonly, nonnull) NSString *email;
var email: String { get }

The email address for this account.


isAuthenticated (read-only)

@property (nonatomic, readonly) BOOL isAuthenticated;
var isAuthenticated: Bool { get }

It represents the logged in status of the account.