- Модуль: sender
- Путь к файлу: ~/bitrix/modules/sender/lib/group.php
- Класс: BitrixSenderGroupConnectorTable
- Вызов: GroupConnectorTable::getMap
static function getMap()
{
return array(
'GROUP_ID' => array(
'data_type' => 'integer',
'primary' => true,
),
'NAME' => array(
'data_type' => 'string',
),
'ENDPOINT' => array(
'data_type' => 'string',
'required' => true,
'serialized' => true,
),
'ADDRESS_COUNT' => array(
'data_type' => 'integer',
'default_value' => 0,
),
'GROUP' => array(
'data_type' => 'BitrixSenderGroupTable',
'reference' => array('=this.GROUP_ID' => 'ref.ID'),
),
'FILTER_ID' => array(
'data_type' => 'string',
),
);
}