ConditionalDeleteStatus
public enum ConditionalDeleteStatus: String
A code that indicates how the server supports conditional delete.
URL: http://hl7.org/fhir/conditional-delete-status ValueSet: http://hl7.org/fhir/ValueSet/conditional-delete-status
-
No support for conditional deletes.
Declaration
Swift
case notSupported = "not-supported"
-
Conditional deletes are supported, but only single resources at a time.
Declaration
Swift
case single = "single"
-
Conditional deletes are supported, and multiple resources can be deleted in a single interaction.
Declaration
Swift
case multiple = "multiple"