- Модуль: voximplant
- Путь к файлу: ~/bitrix/modules/voximplant/lib/model/callcrmentity.php
- Класс: BitrixVoximplantModelCallCrmEntityTable
- Вызов: CallCrmEntityTable::getMap
static function getMap()
{
return [
new FieldsStringField('CALL_ID', [
'primary' => true
]),
new FieldsStringField('ENTITY_TYPE', [
'primary' => true
]),
new FieldsIntegerField('ENTITY_ID', [
'primary' => true
]),
new FieldsBooleanField('IS_PRIMARY', [
'values' => ['N', 'Y']
]),
new FieldsBooleanField('IS_CREATED', [
'values' => ['N', 'Y']
]),
new FieldsRelationsReference('CALL', StatisticTable::class, Join::on('this.CALL_ID', 'ref.CALL_ID'))
];
}