ProviderVisitType
public struct ProviderVisitType : Codable, Equatable
Represents a particular type of visit supported by a Provider
-
A unique key for the visit type. This property will be used for filtering and queries
Declaration
Swift
public let visitTypeId: String
-
The name of the Visit Type
Declaration
Swift
public let name: String
-
The shortName of the Visit Type
Declaration
Swift
public let shortName: VisitTypeShortName?
-
If available, more information about a Visit Type
Declaration
Swift
public let description: String?
-
Undocumented
Declaration
Swift
public init( visitTypeId: String, name: String, shortName: VisitTypeShortName?, description: String? )