Package-level declarations

Types

Link copied to clipboard
interface FormField
Link copied to clipboard
data class InternalPreChatField(val name: String, val order: Int, val labels: PreChatLabels = PreChatLabels(), val type: PreChatFieldType, val required: Boolean, val maxLength: Int, var userInput: String = "", var errorType: PreChatErrorType = PreChatErrorType.None, var isHidden: Boolean = false, var isEditable: Boolean = true) : PreChatField
Link copied to clipboard

The type of error associated with a pre-chat field.

Link copied to clipboard

A pre-chat field for a Conversation.

Link copied to clipboard
@JsonClass(generateAdapter = false)
enum PreChatFieldType : Enum<PreChatFieldType> , Parcelable

The type of PreChatField.

Link copied to clipboard
data class PreChatLabels(val display: String = "") : Parcelable

The labels associated with pre-chat fields.