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