- Модуль: rest
- Путь к файлу: ~/bitrix/modules/rest/lib/eventoffline.php
- Класс: BitrixRestEventOfflineTable
- Вызов: EventOfflineTable::getMap
static function getMap()
{
return array(
'ID' => array(
'data_type' => 'integer',
'primary' => true,
'autocomplete' => true,
),
'TIMESTAMP_X' => array(
'data_type' => 'datetime',
),
'MESSAGE_ID' => array(
'data_type' => 'string',
'required' => true,
),
'APP_ID' => array(
'data_type' => 'integer',
'required' => true,
),
'EVENT_NAME' => array(
'data_type' => 'string',
'required' => true,
),
'EVENT_DATA' => array(
'data_type' => 'text',
'serialized' => true,
),
'EVENT_ADDITIONAL' => array(
'data_type' => 'text',
'serialized' => true,
),
'PROCESS_ID' => array(
'data_type' => 'string',
'default_value' => '',
),
'CONNECTOR_ID' => array(
'data_type' => 'string',
'default_value' => '',
),
'ERROR' => array(
'data_type' => 'integer',
'default_value' => 0,
),
);
}