FormOption

open class FormOption

Represents one entry in form options array.

Constructors

Link copied to clipboard
constructor(@NonNull label: String, @NonNull value: String)
Constructs one entry in form options array.

Properties

Link copied to clipboard
The display label of this option, shown to the user in the UI.
Link copied to clipboard
The export value of this option, used when exporting form data.

Functions

Link copied to clipboard
open fun equals(o: Any): Boolean
Compares this form option to the specified object.
Link copied to clipboard
open fun hashCode(): Int
Returns a hash code value for this form option based on its value and label.
Link copied to clipboard
open fun toString(): String
Returns a string representation of this form option, including both value and label.