InAppFormFieldType
Enum class represents different types of form fields.
Enum class representing different types of form field.
Entries | Values | Description |
---|---|---|
TEXT | text | Indicates the Text type of form field. |
NAME | name | Indicates the Name type of form field. |
EMAIL | Indicates the Email type of form field. | |
INTEGER | integer | Indicates the Integer type of form field. |
DECIMAL | decimal | Indicates the Decimal type of form field. |
DATE | date | Indicates the Date type of form field. |
DROPDOWN | dropdown | Indicates the Dropdown type of form field. |
MULTI_SELECT_DROPDOWN | multiSelectDropdown | Indicates the Multi select dropdown type of form field. |
Companion Functions
fromValue
Converts a string to the corresponding InAppFormFieldType.
Syntax: fun fromValue(value: String): InAppFormFieldType?
Return Value The InAppFormFieldType corresponding to the given string value. null if no matching form field type is found.
Parameters
Parameters | Type | Description |
---|---|---|
value | String | The string representing the form field type. |
Updated 18 days ago