FieldArgs

data class FieldArgs(val maxOccurs: Output<Int>? = null, val minOccurs: Output<Int>? = null, val name: Output<String>? = null, val table: Output<String>? = null, val type: Output<String>? = null) : ConvertibleToJava<FieldArgs>

A (sub) field of a type.

Constructors

Link copied to clipboard
fun FieldArgs(maxOccurs: Output<Int>? = null, minOccurs: Output<Int>? = null, name: Output<String>? = null, table: Output<String>? = null, type: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): FieldArgs

Properties

Link copied to clipboard
val maxOccurs: Output<Int>? = null

The maximum number of times this field can be repeated. 0 or -1 means unbounded.

Link copied to clipboard
val minOccurs: Output<Int>? = null

The minimum number of times this field must be present/repeated.

Link copied to clipboard
val name: Output<String>? = null

The name of the field. For example, "PID-1" or just "1".

Link copied to clipboard
val table: Output<String>? = null

The HL7v2 table this field refers to. For example, PID-15 (Patient's Primary Language) usually refers to table "0296".

Link copied to clipboard
val type: Output<String>? = null

The type of this field. A Type with this name must be defined in an Hl7TypesConfig.