• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/Dto/Dto.php
  • Класс: BitrixMobileDtoDto
  • Вызов: Dto::getProperties
protected function getProperties(): array
{
	$self = new ReflectionClass($this);
	$properties = $self->getProperties(ReflectionProperty::IS_PUBLIC);
	$result = [];

	foreach ($properties as $property)
	{
		$result[] = new Property($property, $this);
	}
	return $result;
}