ScheduledVisitType

public enum ScheduledVisitType : String, Codable, Equatable

An enum representing the type of a ScheduledVisit: Retail, Virtual, or At Home.

Any new ScheduledVisitTypes that are not supported will automatically return .unknown

  • Undocumented

    Declaration

    Swift

    case home = "home"
  • Undocumented

    Declaration

    Swift

    case retail = "retail"
  • Undocumented

    Declaration

    Swift

    case virtual = "virtual"
  • Undocumented

    Declaration

    Swift

    case unknown = "unknown"
  • Declaration

    Swift

    public init(from decoder: Decoder) throws