• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/internals/model/messageutm.php
  • Класс: Bitrix\Sender\Internals\Model\MessageUtmTable
  • Вызов: MessageUtmTable::getMap
static function getMap()
{
	return array(
		'MESSAGE_ID' => array(
			'data_type' => 'integer',
			'required' => true,
			'primary' => true,
		),
		'CODE' => array(
			'data_type' => 'string',
			'required' => true,
			'primary' => true,
		),
		'VALUE' => array(
			'data_type' => 'text',
			'required' => true,
		),
		'MESSAGE' => array(
			'data_type' => MessageTable::class,
			'reference' => array('=this.MESSAGE_ID' => 'ref.ID'),
		),
	);
}