Status
public enum Status : Equatable, RawRepresentable, Codable, SendableAll defined states of a task (see gemSysL_eRp chapter 2.4.6 “Konzept Status E-Rezept”)
- 
                  
                  The task has been initialized but is not yet ready to be acted upon. DeclarationSwift case draft
- 
                  
                  The task is ready (open) to be performed, but no action has yet been taken. DeclarationSwift case ready
- 
                  
                  The task has been started by a pharmacy but is not yet complete. If the task is in this state it is blocked for any operation (e.g. redeem or delete) DeclarationSwift case inProgress
- 
                  
                  The task was not completed and has been deleted. DeclarationSwift case cancelled
- 
                  
                  The task has been completed which means it has been accepted by a pharmacy DeclarationSwift case completed
- 
                  
                  The task state is not defined as subset of eRp status DeclarationSwift case undefined(status: String)
- 
                  
                  This status is not part of the FHIR task status and is computed on device only. Status is computed in ErxTaskEntity+ErxTaskDeclarationSwift case computed(status: ComputedStatus)
- 
                  
                  Extra error status (not FHIR) DeclarationSwift case error(Error)
- 
                  
                  DeclarationSwift public enum ComputedStatus : String, Sendable
- 
                  
                  The associated RawValuetypeDeclarationSwift public typealias RawValue = String
- 
                  
                  Creates a new instance with the specified raw value. DeclarationSwift public init?(rawValue: RawValue)
- 
                  
                  The corresponding value of the raw type. DeclarationSwift public var rawValue: RawValue { get }
- 
                  
                  DeclarationSwift public enum Error : Swift.Error, RawRepresentable
 View on GitHub
            View on GitHub
           Status Enumeration Reference
      Status Enumeration Reference