Files
crm.clientright.ru/modules/SPVoipIntegration/yandex/notifications/OutgoingCallConnected.php

21 lines
431 B
PHP
Executable File

<?php
namespace SPVoipIntegration\yandex\notifications;
class OutgoingCallConnected extends AbstractYandexNotification{
protected $fieldsMapping = array(
'callstatus' => 'callstatus',
'totalduration' => 'totalduration'
);
protected function prepareNotificationModel() {
$this->doConnectedActions();
}
protected function canCreatePBXRecord() {
return false;
}
}