• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/Service/Converter/ProductRow.php
  • Класс: Bitrix\Crm\Service\Converter\ProductRow
  • Вызов: ProductRow::toJson
public function toJson($model): array
{
	if (!($model instanceof \Bitrix\Crm\ProductRow))
	{
		throw new ArgumentException('Model should be an instance of ' . \Bitrix\Crm\ProductRow::class);
	}

	$data = $this->prepareData($model->toArray());

	return $this->convertKeysToCamelCase($data);
}