FlagStatus

public enum FlagStatus: String

Indicates whether this flag is active and needs to be displayed to a user, or whether it is no longer needed or entered in error.

URL: http://hl7.org/fhir/flag-status ValueSet: http://hl7.org/fhir/ValueSet/flag-status

  • A current flag that should be displayed to a user. A system may use the category to determine which roles should view the flag.

    Declaration

    Swift

    case active = "active"
  • The flag does not need to be displayed any more.

    Declaration

    Swift

    case inactive = "inactive"
  • The flag was added in error, and should no longer be displayed.

    Declaration

    Swift

    case enteredInError = "entered-in-error"