• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/model/botchat.php
  • Класс: BitrixImModelBotChatTable
  • Вызов: BotChatTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
			'title' => Loc::getMessage('BOT_CHAT_ENTITY_ID_FIELD'),
		),
		'BOT_ID' => array(
			'data_type' => 'integer',
			'required' => true,
			'title' => Loc::getMessage('BOT_CHAT_ENTITY_BOT_ID_FIELD'),
		),
		'CHAT_ID' => array(
			'data_type' => 'integer',
			'required' => true,
			'title' => Loc::getMessage('BOT_CHAT_ENTITY_CHAT_ID_FIELD'),
		),
	);
}