InputField
Input field that needs to be available to the business. If the field is marked as required, then a value needs to be provided for a successful processing of the request.
| Fields | |
|---|---|
id
|
Not for display but need to be sent back for the given input field. |
label
|
Input field label. There may be more information to be shown in a tooltip. |
required
|
Whether the field is required. The action button needs to stay disabled till values for all required fields are provided. |
Union field
value_input
. Specific type of the input field.
value_input
can be only one of the following:
|
|
text_input
|
Input field to provide text information. Corresponds to the html input type=text or html textarea . |
choice_input
|
Input field to select one of the offered choices. Corresponds to the html input type=radio . |
checkbox_input
|
Input field to provide a boolean value. Corresponds to the html input type=checkbox . |