| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | |
| 8: | |
| 9: | |
| 10: | final readonly class CriticalityThresholdsType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly mixed $acceptanceRangeLowValue = null, |
| 14: | public readonly mixed $acceptanceRangeHighValue = null, |
| 15: | public readonly mixed $toleranceRangeLowValue = null, |
| 16: | public readonly mixed $toleranceRangeHighValue = null, |
| 17: | public readonly mixed $deviationRangeLowValue = null, |
| 18: | public readonly mixed $deviationRangeHighValue = null, |
| 19: | ) {} |
| 20: | } |
| 21: | |