| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Describes how to calculate the criticality of a value depending on the improvement direction |
| 9: | */ |
| 10: | final readonly class CriticalityCalculationType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly bool $isRelativeDifference, |
| 14: | public readonly mixed $improvementDirection, |
| 15: | public readonly array $constantThresholds, |
| 16: | public readonly mixed $referenceValue = null, |
| 17: | ) {} |
| 18: | } |
| 19: |