Input Text
data class InputText(val componentId: String? = null, val type: ComponentType = ComponentType.INPUT_TEXT, val name: String? = null, val i18n: String? = null, val enabled: Boolean = true, val placeholder: String? = null, val i18nPlaceholder: String? = null, val helper: String? = null, val i18nHelper: String? = null, val helperRight: Boolean? = false, val info: String? = null, val i18nInfo: String? = null, val icon: String? = null, val iconLeft: String? = null, val required: Boolean? = false, var value: Value? = null, val constraints: InputTextConstraint? = null) : AbstractComponent, Parcelable
Constructors
Link copied to clipboard
constructor(componentId: String? = null, type: ComponentType = ComponentType.INPUT_TEXT, name: String? = null, i18n: String? = null, enabled: Boolean = true, placeholder: String? = null, i18nPlaceholder: String? = null, helper: String? = null, i18nHelper: String? = null, helperRight: Boolean? = false, info: String? = null, i18nInfo: String? = null, icon: String? = null, iconLeft: String? = null, required: Boolean? = false, value: Value? = null, constraints: InputTextConstraint? = null)