• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/message.php
  • Класс: BitrixMessageServiceMessage
  • Вызов: Message::setType
public function setType(string $type): Message
{
	if (!MessageType::isSupported($type))
	{
		throw new ArgumentTypeException('Unsupported message type');
	}

	$this->type = $type;
	return $this;
}