RetailDepartment

public struct RetailDepartment : Equatable, Codable

A struct to represent a RetailDepartment.. ex clinic

  • The brand that the retail department belongs to

    Declaration

    Swift

    public let brandName: String
  • A name for the retail department

    Declaration

    Swift

    public let displayName: String
  • An Address object of the retail department

    Declaration

    Swift

    public let address: Address
  • The retail department phone number

    Declaration

    Swift

    public let phone: String
  • An image url that will return a jpg of the location

    Declaration

    Swift

    public let smallImageUrl: URL
  • longitude of the physical location of the retail department

    Declaration

    Swift

    public let longitude: Double
  • latitude of the physical location of the retail department

    Declaration

    Swift

    public let latitude: Double
  • The EHRSystemName of where the retail department belongs

    Declaration

    Swift

    public let ehrSystemName: String
  • The unique name for a retail department . Previously urlName

    Declaration

    Swift

    public let departmentName: String
  • Which timezone string the retail department is in.

    Declaration

    Swift

    public let timezone: String
  • The internal departmentId of the retail department

    Declaration

    Swift

    public let departmentId: String
  • What type of retail department . eg. Retail, Virtual.

    Declaration

    Swift

    public let clinicType: String
  • Whether or not the retail department is Active.

    Declaration

    Swift

    public let isActive: Bool
  • The internal instance Id

    Declaration

    Swift

    public let instanceId: String
  • A list of visit types that are allowed on this clinic. This will need to be passed up when getTimeSlots is called

    Declaration

    Swift

    public let allowedVisitTypes: [AllowedVisitType]
  • A list of days with times that the retail department is open

    Declaration

    Swift

    public let openDays: [OpenDay]