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
PracticeCareModetype of the practice. In theVirtualPracticetype it will always bevirtualDeclaration
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
VirtualPracticeRegiontypes where the practice is supported.Declaration
Swift
public var practiceRegions: [VirtualPracticeRegion] -
Undocumented
Declaration
Swift
public init( practiceId: String, displayName: String, careMode: PracticeCareMode, payment: PracticePaymentAvailability, epicBookingEnabled: Bool, practiceRegions: [VirtualPracticeRegion] )
View on GitHub
Install in Dash
VirtualPractice Structure Reference