• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/version.php
  • Класс: BitrixDiskRestServiceVersion
  • Вызов: Version::getVersionById
private function getVersionById($id)
{
	$version = DiskVersion::getById($id, array('OBJECT'));
	if(!$version || !$version->getObject())
	{
		throw new RestException("Could not find entity with id '{$id}'.", RestException::ERROR_NOT_FOUND);
	}

	return $version;
}