Page Summary
-
BarcodeEmailrepresents an email message extracted from a QR code, like those with 'MAILTO:' schemes. -
It provides access to the email's address, body, subject, and type through dedicated properties.
-
The
typeproperty indicates the specific kind of email, offering more context about its purpose or content. -
Although there's an
initmethod, it is marked as unavailable, suggesting that instances are likely created internally by the SDK.
BarcodeEmail
class BarcodeEmail : NSObjectAn email message from a ‘MAILTO:’ or similar QR Code type.
-
Email message address.
Declaration
Swift
var address: String? { get } -
Email message body.
Declaration
Swift
var body: String? { get } -
Email message subject.
Declaration
Swift
var subject: String? { get } -
Email message type.
Declaration
Swift
var type: BarcodeEmailType { get } -
Unavailable.