ReminderStatus
public enum ReminderStatus : Int, Codable
The set of available reminder status types.
case notReminded = -1
case disabled = 0
case reminded = 1
-
The user is not reminded.
Declaration
Swift
case notReminded = -1
-
The show can’t be reminded or unreminded
Declaration
Swift
case disabled = 0
-
The user is reminded.
Declaration
Swift
case reminded = 1
-
Initializes an instance of
ReminderStatus
with the given bool value.If
nil
is given, then an instance of.disabled
is initialized.Declaration
Swift
public init(_ bool: Bool?)
Parameters
bool
The boolean value used to initialize an instance of
ReminderStatus
.