(self, element: dict[str, Any])
| 256 | return not self.is_rest |
| 257 | |
| 258 | def _transformAttributes(self, element: dict[str, Any]) -> dict[str, Any]: |
| 259 | if self._attributesTransformer is None: |
| 260 | return element |
| 261 | return self._attributesTransformer(element) |
| 262 | |
| 263 | @property |
| 264 | def totalCount(self) -> int: |