ActivityChange::__construct

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. ActivityChange
  4. __construct
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/counter/monitor/activitychange.php
  • Класс: Bitrix\Crm\Counter\Monitor\ActivityChange
  • Вызов: ActivityChange::__construct
public function __construct(
	int $id,
	?bool $oldIsIncomingChannel,
	?bool $newIsIncomingChannel,
	?DateTime $oldDeadline,
	?DateTime $newDeadline,
	?bool $oldIsCompleted,
	?bool $newIsCompleted,
	?int $oldResponsibleId,
	?int $newResponsibleId,
	array $oldBindings,
	array $newBindings,
	?DateTime $oldLightTime,
	?DateTime $newLightTime
)
{
	$this->id = $id;
	$this->oldIsIncomingChannel = $oldIsIncomingChannel;
	$this->newIsIncomingChannel = $newIsIncomingChannel;
	$this->oldDeadline = $oldDeadline;
	$this->newDeadline = $newDeadline;
	$this->oldIsCompleted = $oldIsCompleted;
	$this->newIsCompleted = $newIsCompleted;
	$this->oldResponsibleId = $oldResponsibleId;
	$this->newResponsibleId = $newResponsibleId;
	$this->oldBindings = $oldBindings;
	$this->newBindings = $newBindings;
	$this->oldLightTime = $oldLightTime;
	$this->newLightTime = $newLightTime;
}

Добавить комментарий