Class TSubscriptionTopicQueryCriteria
Unit
bsFhir_r5
Declaration
type TSubscriptionTopicQueryCriteria = class(TBackboneElement)
Description
Describes a stream of resource state changes or events and annotated with labels useful to filter projections from this topic.
Hierarchy
Overview
Methods
Properties
Description
Methods
|
constructor Create; override; |
|
Properties
|
property previous : string read Getprevious write Setprevious; |
The FHIR query based rules are applied to the previous resource state (e.g., state before an update).
|
|
property previousElement : Tstring read GetpreviousElement write SetpreviousElement; |
|
|
property resultForCreate : string read GetresultForCreate write SetresultForCreate; |
For `create` interactions, should the `previous` criteria count as an automatic pass or an automatic fail. If not present, the testing behavior during `create` interactions is unspecified (server discretion).
|
|
property current : string read Getcurrent write Setcurrent; |
The FHIR query based rules are applied to the current resource state (e.g., state after an update).
|
|
property currentElement : Tstring read GetcurrentElement write SetcurrentElement; |
|
|
property resultForDelete : string read GetresultForDelete write SetresultForDelete; |
For 'delete' interactions, should the 'current' query criteria count as an automatic pass or an automatic fail. If not present, the testing behavior during `delete` interactions is unspecified (server discretion).
|
|
property requireBoth : boolean read GetrequireBoth write SetrequireBoth; |
If set to `true`, both the `current` and `previous` query criteria must evaluate `true` to trigger a notification for this topic. If set to `false` or not present, a notification for this topic will be triggered if either the `current` or `previous` tests evaluate to `true`.
|
|
property requireBothElement : Tboolean read GetrequireBothElement write SetrequireBothElement; |
|
Generated by PasDoc 0.15.0.
|