| 1: | <?php |
| 2: | |
| 3: | declare(strict_types=1); |
| 4: | |
| 5: | namespace LaravelUi5\OData\Vocabularies\Ui\V1; |
| 6: | |
| 7: | /** |
| 8: | * Describes how to calculate the trend of a value |
| 9: | */ |
| 10: | final readonly class TrendCalculationType |
| 11: | { |
| 12: | public function __construct( |
| 13: | public readonly mixed $referenceValue, |
| 14: | public readonly bool $isRelativeDifference, |
| 15: | public readonly float $upDifference, |
| 16: | public readonly float $strongUpDifference, |
| 17: | public readonly float $downDifference, |
| 18: | public readonly float $strongDownDifference, |
| 19: | ) {} |
| 20: | } |
| 21: |