• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Chat/ChatFactory.php
  • Класс: BitrixImV2ChatChatFactory
  • Вызов: ChatFactory::getEntityChat
public function getEntityChat(string $entityType, $entityId): ?EntityChat
{
	$params = [
		'TYPE' => Chat::IM_TYPE_CHAT,
		'ENTITY_TYPE' => $entityType,
		'ENTITY_ID' => $entityId,
	];

	return $this->getChat($params);
}