Package-level declarations

Types

Link copied to clipboard
@Serializable
data class EventTriggerCondition(val eventResourceId: String, val matchAll: Boolean? = true, val conditionalFhirPathExpressions: List<String>? = emptyList()) : Serializable, Parcelable
Link copied to clipboard
Link copied to clipboard
@Serializable
data class EventWorkflow(val eventType: EventType = EventType.RESOURCE_CLOSURE, val triggerConditions: List<EventTriggerCondition> = emptyList(), val eventResources: List<ResourceConfig> = emptyList(), val updateValues: List<UpdateWorkflowValueConfig> = emptyList(), val resourceFilterExpressions: List<ResourceFilterExpression>? = null) : Serializable, Parcelable
Link copied to clipboard
@Serializable
data class UpdateWorkflowValueConfig(val jsonPathExpression: String, val value: JsonElement, val resourceType: ResourceType = ResourceType.Task) : Serializable, Parcelable