QuietTimeSettings
public struct QuietTimeSettings : Sendable, Equatable
Quiet time settings
-
Start hour
Declaration
Swift
public let startHour: UInt
-
Start minute
Declaration
Swift
public let startMinute: UInt
-
End hour
Declaration
Swift
public let endHour: UInt
-
End minute
Declaration
Swift
public let endMinute: UInt
-
Default constructor.
Declaration
Swift
public init(startHour: UInt, startMinute: UInt, endHour: UInt, endMinute: UInt) throws
Parameters
startHour
The starting hour. Must be between 0-23.
startMinute
The starting minute. Must be between 0-59.
endHour
The ending hour. Must be between 0-23.
endMinute
The ending minute. Must be between 0-59.