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