• Модуль: mobile
  • Путь к файлу: ~/bitrix/modules/mobile/lib/Dto/Property.php
  • Класс: BitrixMobileDtoProperty
  • Вызов: Property::setValue
public function setValue($object, $serializedValue)
{
	if ($caster = $this->getCaster())
	{
		$typedValue = $caster->cast($serializedValue);
	}
	else
	{
		$typedValue = $serializedValue;
	}

	$this->property->setValue($object, $typedValue);
}