1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Common\V1;
6:
7: /**
8: * Exactly one of `Property`, `DynamicProperty` and `Expression` must be present
9: */
10: final readonly class SortOrderType
11: {
12: public function __construct(
13: public readonly ?string $property = null,
14: public readonly ?string $dynamicProperty = null,
15: public readonly mixed $expression = null,
16: public readonly ?bool $descending = null,
17: ) {}
18: }
19: