1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
QueueItemResult.php
См. документацию.
1<?php
2
3namespace Bitrix\Im\V2\Integration\HumanResources\Sync\Result;
4
5use Bitrix\Im\V2\Integration\HumanResources\Sync\Item\QueueItem;
6use Bitrix\Im\V2\Result;
7
12{
13 protected bool $skip = false;
14
15 public function setSkip(bool $skip): self
16 {
17 $this->skip = $skip;
18
19 return $this;
20 }
21
22 public function skip(): bool
23 {
24 return $this->skip;
25 }
26}
Определения result.php:20