HL7ActStatus

public struct HL7ActStatus

Codes representing the defined possible states of an Act, as defined by the Act class state machine. Reference

  • normal - Encompasses the expected states of an Act, but excludes nullified and obsolete which represent unusual terminal states for the life-cycle.

    Declaration

    Swift

    public static let normal = "normal"
  • aborted - The Act has been terminated prior to the originally intended completion.

    Declaration

    Swift

    public static let aborted = "aborted"
  • active - The Act can be performed or is being performed

    Declaration

    Swift

    public static let active = "active"
  • cancelled - The Act has been abandoned before activation.

    Declaration

    Swift

    public static let cancelled = "cancelled"
  • completed - An Act that has terminated normally after all of its constituents have been performed.

    Declaration

    Swift

    public static let completed = "completed"
  • held - An Act that is still in the preparatory stages has been put aside. No action can occur until the Act is released.

    Declaration

    Swift

    public static let held = "held"
  • new

    new - An Act that is in the preparatory stages and may not yet be acted upon

    Declaration

    Swift

    public static let new = "new"
  • suspended - An Act that has been activated (actions could or have been performed against it), but has been temporarily disabled. No further action should be taken against it until it is released

    Declaration

    Swift

    public static let suspended = "suspended"
  • nullified - This Act instance was created in error and has been ‘removed’ and is treated as though it never existed. A record is retained for audit purposes only.

    Declaration

    Swift

    public static let nullified = "nullified"
  • obsolete - This Act instance has been replaced by a new instance.

    Declaration

    Swift

    public static let obsolete = "obsolete"