• Модуль: rpa
  • Путь к файлу: ~/bitrix/modules/rpa/lib/integration/bizproc/automation/factory.php
  • Класс: BitrixRpaIntegrationBizprocAutomationFactory
  • Вызов: Factory::createTarget
static function createTarget(array $documentType, $documentId = null)
{
	$target = new TargetItem();
	$target->setDocumentType($documentType);

	if ($documentId)
	{
		$target->setDocumentId($documentId);
	}

	return $target;
}