1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
ExportTemplateResponse.php
См. документацию.
1<?php
2
4
6
7final class ExportTemplateResponse extends Result
8{
9 public function getTemplateData(): ?string
10 {
11 return $this->data['templateData'] ?? null;
12 }
13
14 public function setTemplateData(string $templateData): self
15 {
16 $this->data['templateData'] = $templateData;
17
18 return $this;
19 }
20}