• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/notify.php
  • Класс: BitrixRestNotify
  • Вызов: Notify::setType
public function setType($notifyType)
{
	if($notifyType == static::NOTIFY_IM || $notifyType == static::NOTIFY_BOT)
	{
		$this->type = $notifyType;
	}
	else
	{
		throw new ArgumentException('Wrong notify type', 'type');
	}
}