• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/internals/model/posting/click.php
  • Класс: Bitrix\Sender\Internals\Model\Posting\ClickTable
  • Вызов: ClickTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		),
		'POSTING_ID' => array(
			'data_type' => 'integer',
		),
		'RECIPIENT_ID' => array(
			'data_type' => 'integer',
		),
		'DATE_INSERT' => array(
			'data_type' => 'datetime',
			'default_value' => new Main\Type\DateTime(),
		),
		'URL' => array(
			'data_type' => 'string',
		),
		'POSTING' => array(
			'data_type' => Model\PostingTable::class,
			'reference' => array('=this.POSTING_ID' => 'ref.ID'),
		),
	);
}