ActionRelationshipType

public enum ActionRelationshipType: String

Defines the types of relationships between actions

URL: http://hl7.org/fhir/action-relationship-type ValueSet: http://hl7.org/fhir/ValueSet/action-relationship-type

  • The action must be performed before the start of the related action

    Declaration

    Swift

    case beforeStart = "before-start"
  • The action must be performed before the related action

    Declaration

    Swift

    case before = "before"
  • The action must be performed before the end of the related action

    Declaration

    Swift

    case beforeEnd = "before-end"
  • The action must be performed concurrent with the start of the related action

    Declaration

    Swift

    case concurrentWithStart = "concurrent-with-start"
  • The action must be performed concurrent with the related action

    Declaration

    Swift

    case concurrent = "concurrent"
  • The action must be performed concurrent with the end of the related action

    Declaration

    Swift

    case concurrentWithEnd = "concurrent-with-end"
  • The action must be performed after the start of the related action

    Declaration

    Swift

    case afterStart = "after-start"
  • The action must be performed after the related action

    Declaration

    Swift

    case after = "after"
  • The action must be performed after the end of the related action

    Declaration

    Swift

    case afterEnd = "after-end"