VirtualPractice

public struct VirtualPractice : Codable

A structure representing a Virtual Practice to which you can book a virtual visit

  • A UUID for the Virtual Practice. This property will be needed to book Virtual Visits.

    Declaration

    Swift

    public var practiceId: String
  • A plain text string for the name of the Virtual Practice

    Declaration

    Swift

    public var displayName: String
  • A PracticeCareMode type of the practice. In the VirtualPractice type it will always be virtual

    Declaration

    Swift

    public var careMode: PracticeCareMode
  • A structure containing what types of payments are supported in the practice

    Declaration

    Swift

    public var payment: PracticePaymentAvailability
  • Does the virtual practice support Epic Booking

    Declaration

    Swift

    public var epicBookingEnabled: Bool
  • A list of VirtualPracticeRegion types where the practice is supported.

    Declaration

    Swift

    public var practiceRegions: [VirtualPracticeRegion]