MFMailList
public struct MFMailList : Codable
A representation of a mail list by name and subscripiton status
-
The string instance representing the name of the mailing list
Declaration
Swift
public var name: String
-
The string with the description to be presented to the user for this mailing list
Declaration
Swift
public var description: String
-
Indicates if the email is currently subscribed to this mailing list
Declaration
Swift
public var subscribed: Bool
-
Initializer
Declaration
Swift
public init(name: String, description: String, subscribed: Bool)
-
Two
MFMailList
are considered equal if the have the samename
andsubscribed
valueDeclaration
Swift
public static func == (lhs: MFMailList, rhs: MFMailList) -> Bool