ReminderStatus

public enum ReminderStatus : Int, Codable

The set of available reminder status types.

case notReminded = -1
case disabled = 0
case reminded = 1

Cases

Initializers

  • 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.