1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Aggregation\V1;
6:
7: final readonly class ApplySupportedType
8: {
9: public function __construct(
10: public readonly bool $propertyRestrictions,
11: public readonly array $groupableProperties,
12: public readonly array $aggregatableProperties,
13: ) {}
14: }
15: