| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Value range. If the range option only requires a single value, the value must be in the property Low |
| 9: | */ |
| 10: | final readonly class SelectionRangeType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly mixed $sign, |
| 14: | public readonly mixed $option, |
| 15: | public readonly mixed $low, |
| 16: | public readonly mixed $high = null, |
| 17: | ) {} |
| 18: | } |
| 19: |