ActionType

public enum ActionType: String

The type of action to be performed

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

  • The action is to create a new resource

    Declaration

    Swift

    case create = "create"
  • The action is to update an existing resource

    Declaration

    Swift

    case update = "update"
  • The action is to remove an existing resource

    Declaration

    Swift

    case remove = "remove"
  • The action is to fire a specific event

    Declaration

    Swift

    case fireEvent = "fire-event"