FormFieldInputConfigArgs

data class FormFieldInputConfigArgs(val defaultChecked: Output<Boolean>? = null, val defaultCountryCode: Output<String>? = null, val defaultValue: Output<String>? = null, val descriptiveText: Output<String>? = null, val fileUploaderConfig: Output<FormFileUploaderFieldConfigArgs>? = null, val isArray: Output<Boolean>? = null, val maxValue: Output<Double>? = null, val minValue: Output<Double>? = null, val name: Output<String>? = null, val placeholder: Output<String>? = null, val readOnly: Output<Boolean>? = null, val required: Output<Boolean>? = null, val step: Output<Double>? = null, val type: Output<String>, val value: Output<String>? = null, val valueMappings: Output<FormValueMappingsArgs>? = null) : ConvertibleToJava<FormFieldInputConfigArgs>

Constructors

Link copied to clipboard
constructor(defaultChecked: Output<Boolean>? = null, defaultCountryCode: Output<String>? = null, defaultValue: Output<String>? = null, descriptiveText: Output<String>? = null, fileUploaderConfig: Output<FormFileUploaderFieldConfigArgs>? = null, isArray: Output<Boolean>? = null, maxValue: Output<Double>? = null, minValue: Output<Double>? = null, name: Output<String>? = null, placeholder: Output<String>? = null, readOnly: Output<Boolean>? = null, required: Output<Boolean>? = null, step: Output<Double>? = null, type: Output<String>, value: Output<String>? = null, valueMappings: Output<FormValueMappingsArgs>? = null)

Properties

Link copied to clipboard
val defaultChecked: Output<Boolean>? = null

Specifies whether a field has a default value.

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

The default country code for a phone number.

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

The default value for the field.

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

The text to display to describe the field.

Link copied to clipboard

The configuration for the file uploader field.

Link copied to clipboard
val isArray: Output<Boolean>? = null

Specifies whether to render the field as an array. This property is ignored if the dataSourceType for the form is a Data Store.

Link copied to clipboard
val maxValue: Output<Double>? = null

The maximum value to display for the field.

Link copied to clipboard
val minValue: Output<Double>? = null

The minimum value to display for the field.

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

The name of the field.

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

The text to display as a placeholder for the field.

Link copied to clipboard
val readOnly: Output<Boolean>? = null

Specifies a read only field.

Link copied to clipboard
val required: Output<Boolean>? = null

Specifies a field that requires input.

Link copied to clipboard
val step: Output<Double>? = null

The stepping increment for a numeric value in a field.

Link copied to clipboard
val type: Output<String>

The input type for the field.

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

The value for the field.

Link copied to clipboard

The information to use to customize the input fields with data at runtime.

Functions

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