Timestamps

public struct Timestamps : Equatable, Codable

An struct representing various times at which 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?
  • Declaration

    Swift

    public init(from decoder: Decoder) throws