Timestamps
public struct Timestamps : Equatable, Codable
An struct representing various times at wchich a ScheduledVisit was updated
-
The day and time at which the visit was cancelled. nil if not applicable
Declaration
Swift
public let cancelled: Date? -
The day and time at which the visit was completed. nil if not applicable
Declaration
Swift
public let done: Date? -
The day and time at which the visit was requested. nil if not applicable
Declaration
Swift
public let requested: Date? -
The day and time at which the visit was staff declined. nil if not applicable
Declaration
Swift
public let staffDeclined: Date? -
Undocumented
Declaration
Swift
public init( cancelled: Date?, done: Date?, requested: Date?, staffDeclined: Date? ) -
Declaration
Swift
public init(from decoder: Decoder) throws
View on GitHub
Install in Dash
Timestamps Structure Reference