FormResult

sealed class FormResult

Represents the result of a form submission.

Parameters

resultType

The FormResultType value type for this form result.

Inheritors

Types

Link copied to clipboard
class FormErrorResult(val errors: List<FormError>) : FormResult

Represents a failed form submission.

Link copied to clipboard
class FormRecordsResult(val records: List<RecordResult>) : FormResult

Represents a successful form submission.

Link copied to clipboard
@JsonClass(generateAdapter = false)
enum FormResultType : Enum<FormResult.FormResultType>

An enum that defines FormResult.resultType types that can be returned from a form submission.

Properties

Link copied to clipboard