- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/ml/dataprovider/openlines.php
- Класс: Bitrix\Crm\Ml\DataProvider\OpenLines
- Вызов: OpenLines::getFeatureMap
public function getFeatureMap()
{
if(!Loader::includeModule("imopenlines") || !Loader::includeModule("im"))
{
return false;
}
return [
"OL_SESSIONS_TOTAL" => ["dataType" => "int"],
"OL_SESSIONS_LAST_WEEK" => ["dataType" => "int"],
"OL_SESSIONS_LAST_MONTH" => ["dataType" => "int"],
"OL_SESSIONS_OLDER_MONTH" => ["dataType" => "int"],
"OL_SOURCE" => ["dataType" => "string"], // most frequent open line session source
"OL_CLIENT_ANSWER_TIME" => ["dataType" => "int"], // median value
"OL_OPERATOR_ANSWER_TIME" => ["dataType" => "int"], // median value
"OL_MESSAGE_COUNT" => ["dataType" => "int"],
"OL_OPERATOR_MESSAGE_TEXT" => ["dataType" => "text"],
"OL_CLIENT_MESSAGE_TEXT" => ["dataType" => "text"],
];
}