ErxTaskOrder
public struct ErxTaskOrder : Equatable, Codable
Data Model that holds all relevant informations for placing an order in a pharmacy
-
ErxTaskOrderidentifierDeclaration
Swift
public let identifier: String -
Task Id for the prescription
Declaration
Swift
public let erxTaskId: String -
Access Code of the prescription
Declaration
Swift
public let accessCode: String -
Identifier of the organization where order will be issued
Declaration
Swift
public let telematikId: String -
FlowType describes type of task (e.G. Direktzuweisung).
Declaration
Swift
public var flowType: String -
Contains informations about the user and the selected redeem option (optional for flowtype 162)
Declaration
Swift
public let payload: Payload? -
Default initializer to instantiate an ErxTask order.
Declaration
Swift
public init(identifier: String, erxTaskId: String, accessCode: String, telematikId: String, flowType: String, payload: Payload? = nil)Parameters
identifierErxTaskOrderidentifiererxTaskIdId of the ErxTask to order
accessCodeAccessCode of the prescription that should be redeemed
telematikIdTelematik-ID for the organization in which the order will be placed
payloadJSONInformations about the users address and the selected redeem option
-
Declaration
Swift
public struct Payload : Codable, Equatable -
Declaration
Swift
public enum Error : Swift.Error
View on GitHub
ErxTaskOrder Structure Reference