• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/builders/buildereventconnectionfromdm.php
  • Класс: BitrixCalendarSyncBuildersBuilderEventConnectionFromDM
  • Вызов: BuilderEventConnectionFromDM::build
public function build(): EventConnection
{
	return (new EventConnection())
		->setId($this->getId())
		->setEntityTag($this->getEntityTag())
		->setVendorVersionId($this->entity->getVendorVersionId())
		->setRecurrenceId($this->entity->getRecurrenceId())
		->setLastSyncStatus($this->getLastSyncStatus())
		->setVendorEventId($this->getVendorEventId())
		->setVersion($this->getVersion())
		->setData($this->entity->getData())
		->setConnection($this->getConnection())
		->setEvent($this->getEvent())
	;
}