InAppFormFieldType

Enum class represents different types of form fields.

Enum class representing different types of form field.

EntriesValuesDescription
TEXTtextIndicates the Text type of form field.
NAMEnameIndicates the Name type of form field.
EMAILemailIndicates the Email type of form field.
INTEGERintegerIndicates the Integer type of form field.
DECIMALdecimalIndicates the Decimal type of form field.
DATEdateIndicates the Date type of form field.
DROPDOWNdropdownIndicates the Dropdown type of form field.
MULTI_SELECT_DROPDOWNmultiSelectDropdownIndicates 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

ParametersTypeDescription
valueStringThe string representing the form field type.