/**
  * Assigns multiple values to the JSON output.
  * However, only the key "value" is accepted.
  *
  * @param array $values Keys and values - only a value with key "value" is considered
  * @return \TYPO3\CMS\Fluid\View\AbstractTemplateView the instance of this view to allow chaining
  * @api
  */
 public function assignMultiple(array $values)
 {
     $this->templateView->assignMultiple($values);
     return $this;
 }