PostColumnHeaderData

@Serializable
data class PostColumnHeaderData(val name: String, val type: String, val code: String? = null, val indexed: Boolean? = null, val length: Long? = null, val mandatory: Boolean? = null, val unique: Boolean? = null)

Parameters

name
type

Any of them: Boolean | Date | DateTime | Decimal | Dropdown | Number | String | Text

code

Used in Code Value fields. Column name becomes: code_cd_name. Mandatory if using type Dropdown, otherwise an error is returned.

indexed

Defaults to false

length

Length of the text field. Mandatory if type String is used, otherwise an error is returned.

mandatory

Defaults to false

unique

Defaults to false

Constructors

Link copied to clipboard
constructor(name: String, type: String, code: String? = null, indexed: Boolean? = null, length: Long? = null, mandatory: Boolean? = null, unique: Boolean? = null)

Properties

Link copied to clipboard
val code: String? = null
Link copied to clipboard
val indexed: Boolean? = null
Link copied to clipboard
val length: Long? = null
Link copied to clipboard
val mandatory: Boolean? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val unique: Boolean? = null