Form

data class Form(val messageId: Long, val formKey: String, val formFields: List<FormField>, val isSubmitted: Boolean)

Represents a form.

Since

4.14.0

See also

Constructors

Link copied to clipboard
constructor(messageId: Long, formKey: String, formFields: List<FormField>, isSubmitted: Boolean)

Properties

Link copied to clipboard

A set of fields representing a single question and its corresponding response.

Link copied to clipboard

The key of the form.

Link copied to clipboard

Whether this form is submittable or not.

Link copied to clipboard

Whether this form is submitted or not.

Link copied to clipboard

The id of the message to which the corresponding form belongs