BREmailAccount
Represents a user email account. Inherits from NSObject.
SDK Version: 3.2.0
Declaration
@interface BREmailAccount : NSObject
class BREmailAccount : NSObject
Quick Reference
Properties
| Property | Description |
|---|---|
provider | The email provider for this account |
email | The email address for this account |
isAuthenticated | Whether 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.