DavInvoice
public struct DavInvoice : Hashable, Codable
Acts as the intermediate data model from a ModelsR4.Invoice resource response
and the local store representation
-
Declaration
Swift
public init( totalAdditionalFee: Decimal, totalGross: Decimal, currency: String, chargeableItems: [ChargeableItem] = [], productionSteps: [Production] = [] ) -
Specification of the total additional costs of the insured person
Declaration
Swift
public let totalAdditionalFee: Decimal -
An amount of economic utility in some recognized currency (taxes included).
Declaration
Swift
public let totalGross: Decimal -
ISO 4217 currency code
Declaration
Swift
public let currency: String -
Reference to ChargeItem containing details of this line item or an inline billing code
Declaration
Swift
public let chargeableItems: [ChargeableItem] -
Declaration
Swift
public let productionSteps: [Production] -
Declaration
Swift
public struct ChargeableItem : Hashable, Codable -
Declaration
Swift
public struct Production : Hashable, Codable
View on GitHub
DavInvoice Structure Reference