ActionSelectionBehavior

public enum ActionSelectionBehavior: String

Defines selection behavior of a group

URL: http://hl7.org/fhir/action-selection-behavior ValueSet: http://hl7.org/fhir/ValueSet/action-selection-behavior

  • any

    Any number of the actions in the group may be chosen, from zero to all

    Declaration

    Swift

    case any = "any"
  • all

    All the actions in the group must be selected as a single unit

    Declaration

    Swift

    case all = "all"
  • All the actions in the group are meant to be chosen as a single unit: either all must be selected by the end user, or none may be selected

    Declaration

    Swift

    case allOrNone = "all-or-none"
  • The end user must choose one and only one of the selectable actions in the group. The user may not choose none of the actions in the group

    Declaration

    Swift

    case exactlyOne = "exactly-one"
  • The end user may choose zero or at most one of the actions in the group

    Declaration

    Swift

    case atMostOne = "at-most-one"
  • The end user must choose a minimum of one, and as many additional as desired

    Declaration

    Swift

    case oneOrMore = "one-or-more"