1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Aggregation\V1;
6:
7: /**
8: * The number of `rollup` or `rolluprecursive` operators allowed in a `groupby` transformation
9: */
10: enum RollupType: int
11: {
12: case None = 0;
13: case SingleHierarchy = 1;
14: case MultipleHierarchies = 2;
15: }
16: