ErxPatient
public struct ErxPatient : Hashable, Codable
-
Declaration
Swift
public init(title: String? = nil, name: String? = nil, address: String? = nil, birthDate: String? = nil, phone: String? = nil, status: String? = nil, insurance: String? = nil, insuranceId: String? = nil)
-
Degree or Title
Declaration
Swift
public let title: String?
-
First and last name of the patient (e.g.: Anna Vetter)
Declaration
Swift
public let name: String?
-
Full address incl. street, city, postcode
Declaration
Swift
public let address: String?
-
Patient birthdate (e.g.: 2010-01-31)
Declaration
Swift
public let birthDate: String?
-
Patient phone number
Declaration
Swift
public let phone: String?
-
Contract status (e.g.: 3 == family)
Declaration
Swift
public let status: String?
-
Name of the health insurance (e.g.: IT Versicherung)
Declaration
Swift
public let insurance: String?
-
Health card insurance identifier a.k.a. kvnr (e.g: X764228533)
Declaration
Swift
public let insuranceId: String?