• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/dto/dto.php
  • Класс: BitrixCalendarSyncOffice365DtoDto
  • Вызов: Dto::__construct
public function __construct(array $data = [])
{
	$this->initComplexProperties($data);
	foreach ($data as $key => $value)
	{
		if($this->checkConstructException($key, $value))
		{
			continue;
		}
		if (property_exists($this, $key))
		{
			$this->$key = $value;
		}
	}
}