UserProfileEmail
public struct UserProfileEmail
A structure for user’s email address.
-
The actual email address.
Declaration
Swift
public var value: String
-
The type of email address (home, work, etc.).
Declaration
Swift
public var type: String
-
Initialize a
UserProfileEmail
instance.Declaration
Swift
public init(value: String, type: String)
Parameters
value
The actual email address.
type
The type of the email address.