• Модуль: im
  • Путь к файлу: ~/bitrix/modules/im/lib/V2/Entity/EntityCollection.php
  • Класс: BitrixImV2EntityEntityCollection
  • Вызов: EntityCollection::toRestFormat
public function toRestFormat(array $option = []): array
{
	$collection = [];

	foreach ($this as $entity)
	{
		$collection[] = $entity->toRestFormat($option);
	}

	return $collection;
}