1: <?php
2:
3: declare(strict_types=1);
4:
5: namespace LaravelUi5\OData\Vocabularies\Ui\V1;
6:
7: /**
8: * Describes which direction of a value change is seen as an improvement
9: */
10: enum ImprovementDirectionType: int
11: {
12: case Minimize = 1;
13: case Target = 2;
14: case Maximize = 3;
15: }
16: