ReadStatus
public enum ReadStatus : Int, Codable
The set of available read status types.
case unread = 0
case read = 1
-
The notification is unread.
Declaration
Swift
case unread = 0
-
The notification is read.
Declaration
Swift
case read = 1
-
Initializes an instance of
ReadStatus
with the given bool value.Declaration
Swift
public init(from bool: Bool)
Parameters
bool
The boolean value used to initialize an instance of
ReadStatus
.