• Модуль: location
  • Путь к файлу: ~/bitrix/modules/location/lib/entity/address.php
  • Класс: BitrixLocationEntityAddress
  • Вызов: Address::getFieldValue
public function getFieldValue(int $type): ?string
{
	$result = null;

	if($field = $this->getFieldCollection()->getItemByType($type))
	{
		$result = $field->getValue();
	}

	return $result;
}