1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
IBlockElementToAddValues.php
См. документацию.
1<?php
2
3namespace Bitrix\Lists\Api\Response\IBlockService;
4
6{
7 public function getHasChangedFields(): bool
8 {
9 $has = $this->data['hasChangedFields'] ?? true;
10
11 return is_bool($has) ? $has : true;
12 }
13
14 public function getHasChangedProps(): bool
15 {
16 $has = $this->data['hasChangedProps'] ?? true;
17
18 return is_bool($has) ? $has : true;
19 }
20}