• Модуль: mail
  • Путь к файлу: ~/bitrix/modules/mail/lib/internals/mailcontact.php
  • Класс: BitrixMailInternalsMailContactTable
  • Вызов: MailContactTable::getMap
static function getMap()
{
	return [
		'ID' => [
			'data_type' => 'integer',
			'primary' => true,
			'autocomplete' => true,
		],
		'EMAIL' => [
			'data_type' => 'string',
		],
		'NAME' => [
			'data_type' => 'string',
		],
		'ICON' => [
			'data_type' => 'string',
			'serialized' => true,
		],
		'FILE_ID' => [
			'data_type' => 'integer',
		],
		'USER_ID' => [
			'data_type' => 'integer',
			'required' => true,
		],
		'ADDED_FROM' => [
			'data_type' => 'string',
		],
	];
}