SubscriptionStatus

public enum SubscriptionStatus: String

The status of a subscription.

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

  • The client has requested the subscription, and the server has not yet set it up.

    Declaration

    Swift

    case requested = "requested"
  • The subscription is active.

    Declaration

    Swift

    case active = "active"
  • The server has an error executing the notification.

    Declaration

    Swift

    case error = "error"
  • off

    Too many errors have occurred or the subscription has expired.

    Declaration

    Swift

    case off = "off"