template = $template; $this->target = $target; $this->templateFields = $templateFields; } /** * @return File|null * @since 21.0.0 */ public function getTemplate(): ?File { return $this->template; } /** * @return array * @since 30.0.0 */ public function getTemplateFields(): array { return $this->templateFields; } /** * @return File * @since 21.0.0 */ public function getTarget(): File { return $this->target; } }