ErxSparseChargeItem
public struct ErxSparseChargeItem : Identifiable, Hashable, Codable
A sparsed version of ErxChargeItem
-
ErxChargeItem default initializer
Declaration
Swift
public init( identifier: String, taskId: String?, fhirData: Data, enteredDate: String? = nil, isRead: Bool = false, medication: ErxMedication? = nil, invoice: DavInvoice? = nil )
-
Id of the consent
Declaration
Swift
public var id: String { get }
-
Identifier of the charge item
Declaration
Swift
public let identifier: String
-
Identifier of the related ErxTask
Declaration
Swift
public var taskId: String?
-
Complete FHIR bundle as json encoded data
Declaration
Swift
public let fhirData: Data
-
Date the charge item was entered
Declaration
Swift
public let enteredDate: String?
-
Indicates if the message about the ChargeItem in the order section has been opened by the user
Declaration
Swift
public let isRead: Bool
-
The prescribed medication
Declaration
Swift
public let medication: ErxMedication?
-
Invoice from an Account
Declaration
Swift
public let invoice: DavInvoice?