EmailAddress
public struct EmailAddress : Hashable
Represents data related to specific email address.
-
The email address.
Declaration
Swift
public var address: String -
Categories associated with email address. Note: In case
EmailAddress.categoriesare not empty, thenEmailAddress.addressshould be used according to given categories. Otherwise,EmailAddress.addressis meant for general use.Declaration
Swift
public var categories: [PlaceCategory] -
Creates a new instance.
Declaration
Swift
public init(address: String, categories: [PlaceCategory])