• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/mailing.php
  • Класс: Bitrix\Sender\MailingGroupTable
  • Вызов: MailingGroupTable::getMap
static function getMap()
{
	return array(
		'MAILING_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
		),
		'GROUP_ID' => array(
			'data_type' => 'integer',
			'primary' => true,
		),
		'INCLUDE' => array(
			'data_type' => 'boolean',
			'values' => array(false, true),
			'required' => true,
		),
		'MAILING' => array(
			'data_type' => 'Bitrix\Sender\MailingTable',
			'reference' => array('=this.MAILING_ID' => 'ref.ID'),
		),
		'GROUP' => array(
			'data_type' => 'Bitrix\Sender\GroupTable',
			'reference' => array('=this.GROUP_ID' => 'ref.ID'),
		),
	);
}