TransactionMode
public enum TransactionMode: String
A code that indicates how transactions are supported.
URL: http://hl7.org/fhir/transaction-mode ValueSet: http://hl7.org/fhir/ValueSet/transaction-mode
-
Neither batch or transaction is supported.
Declaration
Swift
case notSupported = "not-supported"
-
Batches are supported.
Declaration
Swift
case batch = "batch"
-
Transactions are supported.
Declaration
Swift
case transaction = "transaction"
-
Both batches and transactions are supported.
Declaration
Swift
case both = "both"