• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/internals/model/groupstate.php
  • Класс: Bitrix\Sender\Internals\Model\GroupStateTable
  • Вызов: GroupStateTable::getMap
static function getMap()
{
	return array(
		'ID' => array(
			'data_type' => 'integer',
			'autocomplete' => true,
			'primary' => true,
		),
		'DATE_INSERT' => array(
			'data_type' => 'datetime',
		),
		'STATE' => array(
			'data_type' => 'integer',
		),
		'FILTER_ID' => array(
			'data_type' => 'string',
		),
		'ENDPOINT' => array(
			'data_type' => 'string',
		),
		'GROUP' => array(
			'data_type' => 'Bitrix\Sender\GroupTable',
			'reference' => array('=this.GROUP_ID' => 'ref.ID'),
		),
		'GROUP_ID' => array(
			'data_type' => 'integer',
			'required' => true,
		),
		'OFFSET' => array(
			'data_type' => 'integer',
		)
	);
}