ParticipationStatus

public enum ParticipationStatus: String

The Participation status of an appointment.

URL: http://hl7.org/fhir/participationstatus ValueSet: http://hl7.org/fhir/ValueSet/participationstatus

  • The participant has accepted the appointment.

    Declaration

    Swift

    case accepted = "accepted"
  • The participant has declined the appointment and will not participate in the appointment.

    Declaration

    Swift

    case declined = "declined"
  • The participant has tentatively accepted the appointment. This could be automatically created by a system and requires further processing before it can be accepted. There is no commitment that attendance will occur.

    Declaration

    Swift

    case tentative = "tentative"
  • The participant needs to indicate if they accept the appointment by changing this status to one of the other statuses.

    Declaration

    Swift

    case needsAction = "needs-action"