• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/activity/uncompletedactivitychange.php
  • Класс: Bitrix\Crm\Activity\UncompletedActivityChange
  • Вызов: UncompletedActivityChange::__construct
public function __construct(
	int $id,
	?bool $oldIsIncomingChannel,
	?bool $newIsIncomingChannel,
	?DateTime $oldDeadline,
	?DateTime $newDeadline,
	?int $oldResponsibleId,
	?int $newResponsibleId,
	?bool $oldIsCompleted,
	?bool $newIsCompleted,
	array $oldBindings,
	array $newBindings,
	?DateTime $oldLightTime,
	?DateTime $newLightTime
)
{
	$this->id = $id;
	$this->oldIsIncomingChannel = $oldIsIncomingChannel;
	$this->newIsIncomingChannel = $newIsIncomingChannel;
	$this->oldDeadline = $oldDeadline;
	$this->newDeadline = $newDeadline;
	$this->oldResponsibleId = $oldResponsibleId;
	$this->newResponsibleId = $newResponsibleId;
	$this->oldIsCompleted = $oldIsCompleted;
	$this->newIsCompleted = $newIsCompleted;
	$this->oldBindings = $oldBindings;
	$this->newBindings = $newBindings;
	$this->oldLightTime = $oldLightTime;
	$this->newLightTime = $newLightTime;
}