• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/entity/version.php
  • Класс: BitrixDiskRestEntityVersion
  • Вызов: Version::getFieldsForMap
public function getFieldsForMap()
{
	return array(
		'CREATE_TIME' => array(
			'IN' => function($externalValue){
				return CRestUtil::unConvertDateTime($externalValue);
			},
			'OUT' => function(DateTime $internalValue = null){
				return CRestUtil::convertDateTime($internalValue);
			},
		),
	);
}