FormRadio

data class FormRadio(@Json(name = namename: String, @Json(name = checkedchecked: Int, @Json(name = optionsoptions: List<FormRadioOption>, @Json(name = labellabel: String, @Json(name = validationvalidation: String, @Json(name = invalidinvalid: Boolean, @Json(name = failed_validation_rulesfailedValidationRules: Any, @Json(name = validation_errorvalidationError: String) : FormNameBase

Parameters

name

The name of the form element

checked

Index of the checked element

options

An array of possible options

label

The label of the form element

validation

List of validation rules, concatenated with a pipe character

invalid

Indicates whether the validation of the element failed

failedValidationRules

A list of failed validation rules (concatenated with a pipe character)

validationError

The validation error (human readable)

Constructors

FormRadio
Link copied to clipboard
fun FormRadio(@Json(name = namename: String, @Json(name = checkedchecked: Int, @Json(name = optionsoptions: List<FormRadioOption>, @Json(name = labellabel: String, @Json(name = validationvalidation: String, @Json(name = invalidinvalid: Boolean, @Json(name = failed_validation_rulesfailedValidationRules: Any, @Json(name = validation_errorvalidationError: String)
The name of the form element

Properties

checked
Link copied to clipboard
var checked: Int
Index of the checked element
failedValidationRules
Link copied to clipboard
var failedValidationRules: Any
A list of failed validation rules (concatenated with a pipe character)
invalid
Link copied to clipboard
var invalid: Boolean
Indicates whether the validation of the element failed
label
Link copied to clipboard
var label: String
The label of the form element
name
Link copied to clipboard
open override var name: String
The name of the form element
options
Link copied to clipboard
var options: List<FormRadioOption>
An array of possible options
validation
Link copied to clipboard
var validation: String
List of validation rules, concatenated with a pipe character
validationError
Link copied to clipboard
var validationError: String
The validation error (human readable)