ConditionalReadStatus

public enum ConditionalReadStatus: String

A code that indicates how the server supports conditional read.

URL: http://hl7.org/fhir/conditional-read-status ValueSet: http://hl7.org/fhir/ValueSet/conditional-read-status

  • No support for conditional deletes.

    Declaration

    Swift

    case notSupported = "not-supported"
  • Conditional reads are supported, but only with the If-Modified-Since HTTP Header.

    Declaration

    Swift

    case modifiedSince = "modified-since"
  • Conditional reads are supported, but only with the If-None-Match HTTP Header.

    Declaration

    Swift

    case notMatch = "not-match"
  • Conditional reads are supported, with both If-Modified-Since and If-None-Match HTTP Headers.

    Declaration

    Swift

    case fullSupport = "full-support"