• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/automation/engine/delayinterval.php
  • Класс: BitrixBizprocAutomationEngineDelayInterval
  • Вызов: DelayInterval::setType
public function setType($type)
{
	$type = (string)$type;
	if ($type === static::TYPE_BEFORE || $type === static::TYPE_AFTER || $type === static::TYPE_IN)
	{
		$this->type = $type;
	}

	return $this;
}