Form Binding Request
class FormBindingRequest<O : Any>(form: Form, val outputClass: Class<O>, val population: O? = null, val validationErrors: List<ValidationError> = emptyList(), persistent: Boolean = false) : AbstractAwaitable<Form, FormResponse>
Present the user with a form and bind it to the given class
Parameters
O
the class to bind the form submission to