Hl7StoreParserConfig

data class Hl7StoreParserConfig(val allowNullHeader: Boolean? = null, val schema: String? = null, val segmentTerminator: String? = null, val version: String? = null)

Constructors

Link copied to clipboard
constructor(allowNullHeader: Boolean? = null, schema: String? = null, segmentTerminator: String? = null, version: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Determines whether messages with no header are allowed.

Link copied to clipboard
val schema: String? = null

JSON encoded string for schemas used to parse messages in this store if schematized parsing is desired.

Link copied to clipboard

Byte(s) to be used as the segment terminator. If this is unset, '\r' will be used as segment terminator. A base64-encoded string.

Link copied to clipboard
val version: String? = null

The version of the unschematized parser to be used when a custom schema is not set. Default value is V1. Possible values are: V1, V2, V3.