pkit_input_hashref — Gets all request paramaters.
$params = $model->pkit_input_hashref;
This method fetches all of the parameters from the Apache request object, returning a reference to a hash containing the parameters as keys, and the parameters' values as values. Note a multivalued parameters is returned as a reference to an array.
Note, that the values in this hash are readonly. To modify something use $model->input( key => $value );.